-
Notifications
You must be signed in to change notification settings - Fork 0
/
HTML_Intro_1.html
30 lines (25 loc) · 952 Bytes
/
HTML_Intro_1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!-- Jumping ahead to add commented notes in, since these are a valuable learning device -->
<!--The below statement declares that this is an HTML5 document-->
<!DOCTYPE html>
<!--Root element of an html page-->
<html>
<!--head is meta information about the HTML page-->
<head>
<!--Thte title of the HTML page, it is displayed in the brower's title bar or in the page's tab-->
<title>Page Title</title>
</head>
<!--Defines the doc's body; contains all visible contents (headings, paragraphs, images, hyperlinks, tables, lists, etc)-->
<body>
<!--h1 defines a large heading-->
<h1>My First Heading</h1>
<!-- p defines a paragraph-->
<p>My first paragraph.</p>
<p>The paragraph here exists to test .html formating.
<br>
<br>
<br>
A break in text does not require an end tag like other elements which have content; elements like this are called Empty Elements.
</p>
<!-- closing the body and ending the document-->
</body>
</html>