-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage10.html
More file actions
106 lines (106 loc) · 2.77 KB
/
Copy pathpage10.html
File metadata and controls
106 lines (106 loc) · 2.77 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!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 />
<ins><h1>Strong & Emphasis</h1></ins>
</center>
<h1>< strong></h1>
<ul>
<li>
The use of the < strong> element indicates that its content has strong
importance. For example, the words contained in this element might be
said with strong emphasis.
</li>
<li>
By default, browsers will show the contents of a < strong> element in
bold.
</li>
</ul>
<center>
<ins><h1>Example</h1></ins>
<table border="2">
<thead>
<tr>
<th>HTML</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr>
<td>
< p>< strong>Beware:< /strong> Pickpockets operate in this area.< /p> <br>
< p>This toy has many small pieces and is
< strong>not suitable for children under five years old.
< /strong>
< /p>
</td>
<td>
<p><strong>Beware:</strong> Pickpockets operate in this area.</p>
<p>
This toy has many small pieces and is
<strong
>not suitable for children under five years old.
</strong>
</p>
</td>
</tr>
</tbody>
</table>
</center>
<hr />
<h1>< em></h1>
<ul>
<li>
The <em> element indicates
emphasis that subtly changes
the meaning of a sentence.
</li>
<li>By default browsers will show
the contents of an <em> element
in italic.
</li>
</ul>
<center>
<ins><h1>Example</h1></ins>
<table border="2">
<thead>
<tr>
<th>HTML</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr>
<td>
< p>I < em>think< /em> Ivy was the first.< /p> <br>
< p>I think < em>Ivy< /em> was the first.< /p> <br>
< p>I think Ivy was the < em>first< /em>.< /p>
</td>
<td>
<p>I <em>think</em> Ivy was the first.</p>
<p>I think <em>Ivy</em> was the first.</p>
<p>I think Ivy was the <em>first</em>.</p>
</td>
</tr>
</tbody>
</table>
</center>
<hr />
<center>
<h3>10</h3>
<p><a href="page11.html">Next page</a></p>
</center>
<hr />
</body>
</html>