forked from css-for-js/variable-fonts-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (80 loc) · 2.37 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<html>
<head>
<title>Variable /Fonts exercise — CSS for JavaScript Developers</title>
<link rel="stylesheet" href="./fonts/raleway/fontface.css" />
<link rel="stylesheet" href="./reset.css" />
<link rel="stylesheet" href="./style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div class="wrapper">
<main>(Pretend there's an app here)</main>
<div class="bottom-wrapper">
<footer>
<div class="meta">
<p class="logo">Heavyweight Industries</p>
<p class="sublogo">
A project by
<span class="person-name">Alan Patel</span> and
<span class="person-name">Kim Williams</span>.
</p>
<p class="legal">
Copyright © 2021
<span class="company-name">Heavyweight Industries Inc.</span>
All rights reserved.
</p>
</div>
<div class="links">
<div>
<h2>Categories</h2>
<nav>
<ul>
<li>
<a href="/">Hot Rolled Steel</a>
</li>
<li>
<a href="/">Stainless Steel</a>
</li>
<li>
<a href="/">Aluminum</a>
</li>
<li>
<a href="/">Iron</a>
</li>
<li>
<a href="/">Titanium</a>
</li>
<li>
<a href="/">Brass</a>
</li>
</ul>
</nav>
</div>
<div>
<h2>About Us</h2>
<nav>
<ul>
<li>
<a href="/">Store Locator</a>
</li>
<li>
<a href="/">Our Story</a>
</li>
<li>
<a href="/">Contact</a>
</li>
<li>
<a href="/">Terms of Service</a>
</li>
<li>
<a href="/">Privacy Policy</a>
</li>
</ul>
</nav>
</div>
</div>
</footer>
</div>
</div>
</body>
</html>