-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (57 loc) · 1.54 KB
/
index.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
56
57
58
59
60
61
62
63
64
65
66
67
<!doctype html>
<html lang="en-US">
<head>
<title>Front End</title>
<link href="css/style.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="wrap">
<div id="header">
<h1>Learning CSS/HTML</h1>
</div>
<div id="content">
<div class="top-nav">
<a href="grouping.html">Grouping</a>
<a href="tables.html">Tables</a>
<a href="forms.html">Forms</a>
<a href="blocks.html">Blocks</a>
<a href="selectors.html">Selectors</a>
<a href="pseudo.html">Pseudo</a>
<a href="sizing-units.html">Sizing Units</a>
<a href="dimensions.html">Dimensions</a>
<a href="font-stacks.html">Font Stacks</a>
</div>
<h1>Heading 1</h1>
<p class="top-nav">Sample <em>Text</em> Here</p>
<h2>Heading 2</h2>
<p>Sample <strong>Text Here</strong></p>
<h3>Look at Me</h3>
<p>
Sample <small>Text Here</small>
</p>
<h4>Heading 4</h4>
<p>Sample <sup>Text Here</sup></p>
<blockquote>
"It was the best of times,<br>
it was the worst times,<br>
it was the age of wisdom..."
</blockquote>
<code>
This is text
This is text
</code>
<pre>
<html>This is text
This is text
</pre>
</div>
<div id="footer">
<ul>
<li>Soccer</li>
<li>Football</li>
<li>Baseball</li>
</ul>
</div>
</div>
</body>
</html>