-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage12.html
More file actions
80 lines (80 loc) · 2.13 KB
/
Copy pathpage12.html
File metadata and controls
80 lines (80 loc) · 2.13 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
<!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>Abbreviations &
Acronyms</h1></ins>
</center>
<h1>< abbr></h1>
<ul>
<li>
If you use an abbreviation or
an acronym, then the < abbr>
element can be used. A title
attribute on the opening tag is
used to specify the full term.
</li>
<li>
In HTML 4 there was a separate
< acronym> element for
acronyms. To spell out the full
form of the acronym, the title
attribute was used (as with the
< abbr> element above). HTML5
just uses the < abbr> element
for both abbreviations and
acronyms.
</li>
</ul>
<hr />
<center>
<hr />
<ins><h1>Example</h1></ins>
<table border="2">
<thead>
<tr>
<th>HTML</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr>
<td>
< p>< abbr title="Professor">Prof< /abbr> Stephen <br>
Hawking is a theoretical physicist and <br>
cosmologist.< /p> <br>
< p>< acronym title="National Aeronautics and Space <br>
Administration">NASA< /acronym> do some crazy <br>
space stuff.< /p>
</td>
<td>
<p><abbr title="Professor">Prof</abbr> Stephen
Hawking is a theoretical physicist and
cosmologist.</p>
<p><acronym title="National Aeronautics and Space
Administration">NASA</acronym> do some crazy
space stuff.</p>
</td>
</tr>
</tbody>
</table>
</center>
<hr />
<center>
<h3>12</h3>
<p><a href="page13.html">Next page</a></p>
</center>
<hr />
</body>
</html>