Site Structure
Build structure with HTML by adding text, links, images and more.
StartSite Structure
Lesson 1 of 1
- 1All 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…
- 2Let’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…
- 3Now, 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 …
- 4The 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…
- 5Nice 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 …
- 6Good 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…
- 7To 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…
- 8Awesome! 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…
- 9Impressive! 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…
- 10With 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…
- 12The 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…
- 13Congratulations! 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