Tags : HTML/CSS



HTML

HyperText Markup Language, commonly referred to as HTML, is the standard markup language used to create web pages. It is written in the form of HTML elements consisting of tags enclosed in angle brackets.


Source: Wikipedia



index.html
<!DOCTYPE html>
<html>
  <head>
    <title>Welcome to my page!</title>
  </head>
  <body>
    <p>Food I like:</p>
    <ul>
      <li>Pizza</li>
      <ul>
        <li>Ham and Cheese</li>
        <li>Mushrooms</li>
      </ul>
      <li>Hamburgers</li>
    </ul>
  </body>
</html>

Try to get a text editor before you start. Either Sublime Text or Atom would work.

Try the following:

  • Create an html file called index.html
  • Create a paragraph with any content inside of it. Open it in your browser to see the changes. If you see NO changes try to hit reload on the browser.
  • Create a list of things you like (general things) and create sublists inside of each item for more precise things.