-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
55 lines (44 loc) · 1.11 KB
/
test.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>test</title>
</head>
<body>
<p title="about w3school">text <del>with </del><q>hint</q> </p>
<pre>
This text is preserved to the <mark>original</mark> format.
Include the line.
<code>var person = {
firstName:"John",
lastName:"Doe"</code>
</pre>
<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.
</blockquote>
<bdo dir="rtl">
What a beautiful day!
</bdo>
<p>
The <abbr title="World Health Organization"> WHO</abbr> was founded in 1948.
</p>
<table border="1">
<caption>Names</caption>
<tr>
<th colspan="2">Name</th>
<th>Age</th>
</tr>
<tr>
<th
rowspan="2">First Name</th>
<th>Last Name</th>
<th>Points</th>
</tr>
<tr>
<td rowspan="2">Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
</body>
</html>