-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage15.html
110 lines (110 loc) · 2.61 KB
/
page15.html
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
<!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>Changes to Content</h1></ins>
</center>
<h1>
< ins> <br />
< del>
</h1>
<ul>
<li>
The < ins> element can be used to show content that has been inserted
into a document, while the < del> element can show text that has been
deleted from it.
</li>
<li>
The content of a < ins> element is usually underlined, while the content
of a < del> element usually has a line through it.
</li>
</ul>
<center>
<hr />
<ins><h1>Example</h1></ins>
<table border="2">
<thead>
<tr>
<th>HTML</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr>
<td>
< p> <br />
It was the < del>worst< /del> < ins>best< /ins> idea she had ever
had. <br />
< /p>
</td>
<td>
<p>
It was the <del>worst</del> <ins>best</ins> idea she had ever
had.
</p>
</td>
</tr>
</tbody>
</table>
</center>
<hr />
<h1>< s></h1>
<ul>
<li>
The < s> element indicates something that is no longer accurate or
relevant (but that should not be deleted).
</li>
<li>
Visually the content of an < s> element will usually be displayed with a
line through the center.
</li>
<li>
Older versions of HTML had a < u> element for content that was
underlined, but this is being phased out.
</li>
</ul>
<center>
<hr />
<ins><h1>Example</h1></ins>
<table border="2">
<thead>
<tr>
<th>HTML</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr>
<td>
< p>Laptop computer:< /p> <br>
< p>< s>Was $995< /s>< /p> <br>
< p>Now only $375< /p>
</td>
<td>
<p>Laptop computer:</p>
<p><s>Was $995</s></p>
<p>Now only $375</p>
</td>
</tr>
</tbody>
</table>
</center>
<hr />
<center>
<h3>15</h3>
<p><a href="page16.html">Next page</a></p>
</center>
<hr />
</body>
</html>