Site Structure- Build structure with HTML by adding text, links, images and more.

What are HTML and CSS: 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 structure with text, links, images, and other fundamental elements. CSS stands for Cascading Style Sheets. It is used to change the appearance of HTML elements. Note: An individual page of a website is referred to as a webpage. Anatomy of an HTML element: Let's explore the basic anatomy of an HTML element. Line 9 of index.html contains a heading element: <h1>You're Building a Website!</h1> All HTML elements begin with an opening tag. In this case, the opening tag is <h1>. Most elements require a closing tag, denoted by a /. In this case, the closing tag is </h1>. The website user only sees the content between the opening and closing tags. Note: There are several other HTML elements in i...