-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage5.html
More file actions
70 lines (70 loc) · 2.05 KB
/
Copy pathpage5.html
File metadata and controls
70 lines (70 loc) · 2.05 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Text</title>
</head>
<body>
<center>
<ins
><em
><h1>Chapter 2 <br />Text</h1></em
></ins
>
<hr />
</center>
<ins><h1>PARAGRAPHS</h1></ins>
<ul>
<li>
To create a paragraph, surround the words that make up the paragraph
with an opening < p> tag and closing < /p> tag.
</li>
<br />
<li>
By default, a browser will show each paragraph on a new line with some
space between it and any subsequent paragraphs.
</li>
</ul>
<center>
<ins><h1>Example</h1></ins>
</center>
<table border="2">
<thead>
<tr>
<th>HTML</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr>
<td>
< p>A paragraph consists of one or more sentences that form a
self-contained unit of discourse. The start of a paragraph is
indicated by a new line.< /p> <br />
< p>Text is easier to understand when it is split up into units of
text. For example, a book may have chapters. Chapters can have
subheadings. Under each heading there will be one or more
paragraphs. < /p>
</td>
<td>
<p>
A paragraph consists of one or more sentences that form a
self-contained unit of discourse. The start of a paragraph is
indicated by a new line.
</p>
<p>
Text is easier to understand when it is split up into units of
text. For example, a book may have chapters. Chapters can have
subheadings. Under each heading there will be one or more
paragraphs.
</p>
</td>
</tr>
</tbody>
</table>
<hr>
<center><h3>05</h3>
<p><a href="page6.html">Next page</a></p></center> <hr>
</body>
</html>