Lesson 1 Introduction To HTML
Lesson 1 Introduction To HTML
Web Browsers
The purpose of a web browser (Chrome, Edge, Firefox, Safari) is to
read HTML documents and display them correctly.
A browser does not display the HTML tags, but uses them to
determine how to display the document:
<html>
<head>
</html>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</