Site Structure
Lesson 1 of 1
  1. 1
    All websites use HTML and CSS. After learning both of these languages, you will be ready to build your own website! * HTML stands for Hyper Text Markup Language. It is used to give websites stru…
  2. 2
    Let’s explore the basic anatomy of an HTML element. Line 9 of index.html contains a heading element: You’re Building a Website! 1. All HTML elements begin with an opening tag. In this…
  3. 3
    Now, let’s learn more about the heading element. Headings are a frequently used HTML element. You can think of them like headlines in a newspaper. Your eyes may notice headings first because the …
  4. 4
    The webpage now has a heading and a tagline. Next, we will add a description of the company. The HTML paragraph element, p, is used to hold one or more sentences, just like paragraphs in an ess…
  5. 5
    Nice work! The webpage is starting to come together. What if you wanted to link users to a different webpage? The HTML anchor element makes it possible to do this with a single click. Click …
  6. 6
    Good job! Creating links with the anchor element is a fundamental web development skill. The diagram to the right illustrates the different parts of the anchor element syntax. In the diagram, not…
  7. 7
    To add images to a webpage, use the HTML image element: Just like websites have URLs, images on the web also have URLs. Image URLs typically end with the .jpg or .png file extension. The s…
  8. 8
    Awesome! The photo makes the webpage much cooler. What’s cooler than a photo? A video! The HTML video element can add video to a webpage. The video element uses a number of attribut…
  9. 9
    Impressive! With just five page elements, you’ve already created an interesting website! Another essential HTML element is the unordered list. Items in an unordered list are referred to as _list…
  10. 10
    With the video and unordered list elements, you may have noticed something interesting: these HTML elements had other HTML elements nested inside of them. For example, in unordered lists, li el…
  11. 11
    Now that we know about HTML element nesting and parent/child relationships, let’s see another way these concepts are applied on a real-life webpage. Div elements divide your page by enclosing…
  12. 12
    The last HTML elements we will explore are involved in metadata processes. You can think of these elements as the “brains” of a webpage because they communicate vital information to the web brows…
  13. 13
    Congratulations! You’ve learned enough HTML to create a great website! Before we move on to styling with CSS, let’s review what we learned in this lesson. #### Languages * html: stands for…

What you'll create

Portfolio projects that showcase your new skills

How you'll master it

Stress-test your knowledge with quizzes that help commit syntax to memory