-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage14.html
More file actions
74 lines (74 loc) · 1.95 KB
/
Copy pathpage14.html
File metadata and controls
74 lines (74 loc) · 1.95 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
<!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>Author Details</h1></ins>
</center>
<h1>< address></h1>
<ul>
<li>
The < address> element has quite a specific use: to contain contact
details for the author of the page.
</li>
<li>
It can contain a physical address, but it does not have to. For example,
it may also contain a phone number or email address.
</li>
<li>
Browsers often display the content of the < address> element in italics.
</li>
<li>
You may also be interested in something called the hCard microformat for
adding physical address information to your markup.
</li>
</ul>
<h3>Online extra</h3>
<p>
You can find out more about hCards on the website accompanying this book.
</p>
<center>
<hr />
<ins><h1>Example</h1></ins>
<table border="2">
<thead>
<tr>
<th>HTML</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr>
<td>
< address> <br> < p> <br>< a href="mailto:homer@example.org">
homer@example.org< /a> <br>< /p> <br>< p>742 Evergreen Terrace,
Springfield.< /p> <br> < /address>
</td>
<td>
<address>
<p><a href="mailto:homer@example.org"> homer@example.org</a></p>
<p>742 Evergreen Terrace, Springfield.</p>
</address>
</td>
</tr>
</tbody>
</table>
</center>
<hr />
<center>
<h3>14</h3>
<p><a href="page15.html">Next page</a></p>
</center>
<hr />
</body>
</html>