-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml-reference.html
More file actions
36 lines (27 loc) · 1.03 KB
/
html-reference.html
File metadata and controls
36 lines (27 loc) · 1.03 KB
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
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>HTML Reference</title>
</head>
<body>
<h1>HTML Reference Page</h1>
<hr>
<h2>HTML Page Introduction</h2>
<p>HTML stands for Hypertext Markup Language and is a system for annotating a document in a way that is syntactically distinguishable from the text. It's one of the three technologies that form the cornerstone of the World Wide Web : HTML, CSS, and Java.</p>
<h3>HTML Page Structure</h3>
<p>A well formed HTML page has the following structure:</p>
<p>...describe structure of HTML page including DOCTYPE / html / head / title / html and body elements</p>
<hr>
<h2>Heading Element</h2>
<h3>Description</h3>
<p>Description of heading element</p>
<h3>Example</h3>
<p>Give an example in HTML of the heading element</p>
<h3>Display</h3>
<p>Show how heading element looks in the browser</p>
<h3>W3 Schools Link</h3>
<hr>
</body>
</html>