-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage3.html
More file actions
45 lines (45 loc) · 1.3 KB
/
Copy pathpage3.html
File metadata and controls
45 lines (45 loc) · 1.3 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
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Structure</title>
</head>
<body>
<center>
<ins> <em> <h1>Chapter 1 <br>Structure</h1></em></ins>
</center>
<hr>
<center>
<h1>SUMMARY</h1>
<ins><h2>Structure</h2></ins>
</center>
<hr>
<h3>
<ul>
<li>HTML pages are text documents.</li> <br>
<li>
HTML uses tags (characters that sit inside angled brackets) to give the
information they surround special meaning.
</li> <br>
<li>Tags are often referred to as elements</li> <br>
<li>
Tags usually come in pairs. The opening tag denotes the start of a piece
of content; the closing tag denotes the end.
</li> <br>
<li>
Opening tags can carry attributes, which tell us more about the content
of that element.
</li> <br>
<li>Attributes require a name and a value.</li> <br>
<li>
To learn HTML you need to know what tags are available for you to use,
what they do, and where they can go.
</li> <br>
</ul>
</h3>
<hr>
<center><h3>03</h3></center>
<center><p><a href="page4.html">Next page</a></p></center> <hr>
</body>
</html>