DEV Community

Antonio
Antonio

Posted on • Updated on

Module 2 Discussion

Read Session 1.2 (pp. 22 - 45) and then answer the following questions and post them in "https://dev.to/":

  1. Write code to mark the text Gourmet Thai Cooking as a heading with the second level of importance. <!DOCTYPE html> Gourmet Thai Cooking

    Main heading

    Paragraph

  2. What is the div element and why will you often encounter it in pre-HTML5 code? -div-is a name that uniquely identifies the division. -Prior to HTML5, sections were defined as divisions created using the following div element:
  3. What element would you use to indicate a change of topic within a section? -The HTML
    element represents a thematic break between paragraph-level elements
  4. Write the code to mark the text Daily Special as emphasized text. Daily Special
  5. Write code to mark the text H2SO4 with subscripts.
    H2SO4

  6. Write the code to link the web page to the CSS file mystyles.css.

  7. Write the expression to insert the em dash into a web page using the character code 8212.

  8. Write the code to insert an inline image using the source file awlogo.png and the alternate text Art World.
    Art World

Top comments (0)