-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.html
More file actions
13 lines (12 loc) · 846 Bytes
/
Copy path1.html
File metadata and controls
13 lines (12 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
<!--https://www.w3schools.com/html/html_intro.asp-->
<!DOCTYPE html> <!--declaration defines that this document is an HTML5 document-->
<html> <!--element is the root element of an HTML page-->
<head> <!--element contains meta information about the HTML page-->
<title>Page Title</title> <!--element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)-->
</head>
<body> <!--element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.-->
<h1>My First Heading</h1> <!--The <h1> element defines a large heading-->
<p>My first paragraph.</p> <!--The <p> element defines a paragraph-->
<br> element <!--"These elements are called empty elements. Empty elements do not have an end tag!"-->
</body>
</html>