-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml.html
More file actions
131 lines (118 loc) · 2.86 KB
/
Copy pathhtml.html
File metadata and controls
131 lines (118 loc) · 2.86 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style1.css">
<link rel="icon" type="favicon" href="images/MinhangcomLogo.png">
<title>Hello</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<table style="width:100%">
<colgroup>
<col span="4" style="background-color: rgb(69, 172, 174)">
</colgroup>
<tr>
<th>Item</th>
<th>Cost</th>
<th>Time</th>
</tr>
<tr>
<td>Apple</td>
<td>1.00</td>
<td>10:00</td>
</tr>
</table>
<table>
<tr>
<th colspan="2" rowspan="1">Name</th>
<th>Age</th>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
<td>20</td>
</tr>
<tr>
<td>Jane</td>
<td>Smith</td>
<td>30</td>
</tr>
</table>
<!--<ul>
<li>Apple</li>
<li>Orange</li>
<li>Banana</li>
</ul>-->
<!--<ol>
<li>Apple</li>
<li>Orange</li>
<li>Banana</li>
</ol>-->
<dl>
<dt>debbie</dt>
<dd>/a smart girl</dd>
<dt>George</dt>
<dd>/smart boy</dd>
</dl>
<!--<ul style="list-style-type: ;">
<li>Food</li>
<li>water</li>
<li><a href="https://usahealthlife.com">Visit USA Health Life</a></li>
</ul>"""-->
<ul type="I">
<li><a href="#home"></a>Home</li>
<li><a href="#services"></a>Services</li>
<li><a href="#contact"></a>Contact</li>
<li><a href="#about"></a>about</li>
</ul>
<hr>
<div>Hello<br> World</div>
<span>Hello</span>
<div class="mycontainer">
<div></div>
<h1>London is a very cool place</h1>
<p>London is the capital city of England<br> and has over 8 million inhabitants</p>
</div>
<div>
<h1>hello</h1>
</div>
</div>
<h1 id="myHeader">Lol</h1>
<iframe src="index.html" name="targetiframe" height="300px" width="100%" title="Iframe Example"></iframe>
<p><a href="https://www.minhang.com" target="targetiframe">minhang.com</a></p>
<iframe src="index.html" style="width:500px;height:600px;" title="minhang.com"></iframe>
<section>
<p> Hello everyone</p>
</section>
<p>How are you?</p>
</section>
<video width="320" height="240" autoplay muted>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
</body>
<!-- <address>
<article>
<aside>
<blockquote>
<canvas>
<dd>
<div>
<dl>
<dt>
<fieldset>
<figcaption>
<figure>
<footer>
<form>
<hr>
<li>
<main>
<nav>
<noscript>
<pre>
<section>
<video> -->
</html>