-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage6.html
More file actions
123 lines (122 loc) · 3.04 KB
/
Copy pathpage6.html
File metadata and controls
123 lines (122 loc) · 3.04 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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>Bold & Italic</h1></ins>
</center>
<h1>< b></h1>
<ul>
<li>
By enclosing words in the tags
< b> and < /b> we can make
characters appear bold.
</li>
<br />
<li>
The < b> element also represents
a section of text that would be
presented in a visually different
way (for example key words in a
paragraph) although the use of
the < b> element does not imply
any additional meaning.
</li>
</ul>
<center>
<ins><h1>Example</h1></ins>
</center>
<center>
<table border="2">
<thead>
<tr>
<th>HTML</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr>
<td>
< p>This is how we make a word appear < b>bold.< /b>
< /p> <br>
< p>Inside a product description you might see some
< b>key features< /b> in bold.< /p>
</td>
<td>
<p>
<p>This is how we make a word appear <b>bold.</b>
</p>
<p>Inside a product description you might see some
<b>key features</b> in bold.</p>
</p>
</td>
</tr>
</tbody>
</table>
</center>
<hr>
<h1>< i></h1>
<ul>
<li>
By enclosing words in the tags
< i> and < /i> we can make
characters appear italic.
</li>
<br />
<li>
The < i> element also represents
a section of text that would be
said in a different way from
surrounding content — such as
technical terms, names of ships,
foreign words, thoughts, or other
terms that would usually be
italicized.
</li>
</ul>
<center>
<ins><h1>Example</h1></ins>
</center>
<center>
<table border="2">
<thead>
<tr>
<th>HTML</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr>
<td>
< p>This is how we make a word appear < i>italic< /i>.
< /p> <br>
< p>It's a potato < i>Solanum teberosum< /i>.< /p> <br>
< p>Captain Cook sailed to Australia on the
< i>Endeavour< /i>.< /p>
</td>
<td>
<p>This is how we make a word appear <i>italic</i>.
</p>
<p>It's a potato <i>Solanum teberosum</i>.</p>
<p>Captain Cook sailed to Australia on the
<i>Endeavour</i>.</p>
</td>
</tr>
</tbody>
</table>
</center>
<hr>
<center><h3>06</h3>
<p><a href="page7.html">Next page</a></p></center> <hr>
</body>
</html>