-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (30 loc) · 782 Bytes
/
index.html
File metadata and controls
37 lines (30 loc) · 782 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>HTML UI</title>
</head>
<body>
<h1>HTML UI</h1>
<p>Just a collections of native HTML elements</p>
<h1>Typography</h1>
<hr />
<h2>Headings</h2>
<h1>The five boxing wizards jump quickly.</h1>
<h2>The five boxing wizards jump quickly.</h2>
<h3>The five boxing wizards jump quickly.</h3>
<h4>The five boxing wizards jump quickly.</h4>
<h5>The five boxing wizards jump quickly.</h5>
<h6>The five boxing wizards jump quickly.</h6>
<p>The five boxing wizards jump quickly.</p>
<h2>Pre</h2>
<pre>
My Bonnie lies over the ocean.
My Bonnie lies over the sea.
My Bonnie lies over the ocean.
Oh, bring back my Bonnie to me.
</pre>
<h1>Button</h1>
<hr />
<button>Button</button>
</body>
</html>