-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (70 loc) · 2.34 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
<!doctype html>
<html lang="en">
<head>
<title>BetterPaint</title>
<link rel="icon" href="img/Logo_Condensed.svg">
<meta name="description" content="Squeaky. Clean. Paint.">
<meta name="author" content="Melinda Rabenstein">
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,700;1,500;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/styles_desktop.css" media="screen and (min-width: 501px)">
<link rel="stylesheet" href="css/styles_mobile.css" media="screen and (max-width: 500px)">
</head>
<body>
<header class="flex">
<div>
<a href="/"><img src="img/Logo_Condensed.svg" alt="BetterPaint" class="mobile" /><img src="img/Logo_Full.svg" alt="BetterPaint" class="desktop" /></a>
</div>
<div>
<a id="shoppingBag"><img src="img/Icon_Shopping_Bag.svg" alt="Shopping Bag" /></a>
</div>
</header>
<main>
<section id="hero">
<h1>Squeaky. Clean. Paint.</h1>
<p class="subtitle">High-quality, non-toxic paint shipped right to your door.</p>
<a class="button label">Shop the Collection</a>
</section>
<section id="emailSignup" class="accentBack textCenter flex">
<div>
<h2>We send really nice emails.</h2>
<form>
<input type="email" name="email" placeholder="Enter your email address" required><input type="submit" class="button label">
</form>
</div>
</section>
</main>
<footer class="grayBack">
<nav>
<ul>
<li>Shop</li>
<li><a href="">Face Paint</a></li>
<li><a href="">Craft Paint</a></li>
<li><a href="">Spray Paint</a></li>
</ul>
<ul>
<li>Resources</li>
<li><a href="">Blog</a></li>
<li><a href="">FAQ</a></li>
<li><a href="">Contact Us</a></li>
</ul>
<ul>
<li>Company</li>
<li><a href="">Privacy Policy</a></li>
<li><a href="">Terms of Use</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Join the Team</a></li>
</ul>
</nav>
<div id="copyright">
<p>©2020 BetterPaint</p>
<p>All Rights Reserved</p>
</div>
</footer>
</body>
</html>