-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage11.html
More file actions
93 lines (93 loc) · 2.68 KB
/
Copy pathpage11.html
File metadata and controls
93 lines (93 loc) · 2.68 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
<!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>QUOTATIONS</h1></ins>
</center>
<h1>< blockquote></h1>
<ul>
<li>
The < blockquote> element is used for longer quotes that take up an
entire paragraph. Note how the < p> element is still used inside the <
blockquote> element.
</li>
<li>
Browsers tend to indent the contents of the < blockquote> element,
however you should not use this element just to indent a piece of text —
rather you should achieve this effect using CSS.
</li>
</ul>
<hr />
<h1>< q></h1>
<ul>
<li>
The < q> element is used for shorter quotes that sit within a paragraph.
Browsers are supposed to put quotes around the < q> element, however
Internet Explorer does not — therefore many people avoid using the < q>
element.
</li>
<li>
Both elements may use the cite attribute to indicate where the quote is
from. Its value should be a URL that will have more information about
the source of the quotation.
</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>
< blockquote cite="http://en.wikipedia.org/wiki/ <br />
Winnie-the-Pooh" > <br />< p>Did you ever stop to think, and
forget to start again?< /p> <br />
< /blockquote> <br />
< p> As A.A. Milne said, < q >Some people talk to <br />
animals. Not many listen though. That's the <br />
problem.< /q > < /p>
</td>
<td>
<blockquote
cite="http://en.wikipedia.org/wiki/
Winnie-the-Pooh"
>
<p>Did you ever stop to think, and forget to start again?</p>
</blockquote>
<p>
As A.A. Milne said,
<q
>Some people talk to animals. <br> Not many listen though. That's
the problem.</q
>
</p>
</td>
</tr>
</tbody>
</table>
</center>
<hr />
<center>
<h3>11</h3>
<p><a href="page12.html">Next page</a></p>
</center>
<hr />
</body>
</html>