Summary 1

1. Inroduction to html

The first reading introduces HTML, explaining that it is an abbreviation for hypertext markup language, that it is the structure of a web page, and that it tells the browser how to display the content. The reading also explains an HTML element, stating that it is a start tag, the content, and the end tag.

1. html elements

The second reading focuses on basic examples of HTML. It begins by going over HTML documents, breaking down its elements such as how it needs to start with a document type declaration and how it begins with <html> and ends with </html>. The article further explains doctype declaration and how it represents the document type, allowing the browser to display the website correctly. The article also discusses different tags that can be used with HTML, such as <h1>,<p> and more.

1.html Basics

The third reading discusses HTML elements, from the start tag to the end tag. It goes on to give examples of tags and their content. It also explains how there are nested elements, which are elements that contain other elements. For example, <html> can have elements such as <body>, <p>, and <h1> within it.