-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (63 loc) · 2.24 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
<!DOCTYPE html>
<html>
<head>
<title>Tortoiseshell Optics</title>
<link rel="stylesheet" type="text/css" href="resources/css/reset.css">
<link rel="stylesheet" type="text/css" href="resources/css/style.css">
</head>
<body>
<!--Jumbo + Navigation-->
<div id="jumbo">
<div class="container">
<nav class="flex">
<div id="logo" class="flex">
<img src="resources/img/logo-white.png" alt="Tortoiseshell Logo">
<h1 id="logo-copy">Tortoiseshell Optics</h1>
</div>
<div class="nav-items">
<span>Services</span>
<span>Products</span>
<span>Contact</span>
</div>
<div class="mobile">
<span>Menu</span>
</div>
</nav>
<div id="jumbo-copy">
<h2>DON'T JUST LOOK, SEE.</h2>
</div>
</div>
</div>
<!--Perks-->
<div class="perks container flex">
<div class="perk flex">
<div id="exams"><img src="resources/img/paper-icon.png" alt="Comprehensive Exams"></div>
<h3>Comprehensive <br />Exams</h3>
</div>
<div class="perk flex">
<div id="fittings"><img src="resources/img/ruler-icon.png" alt="Custom Fittings"></div>
<h3>Custom <br />Fittings</h3>
</div>
<div class="perk flex">
<div id="delivery"><img src="resources/img/truck-icon.png" alt="Fast Delivery"></div>
<h3>Fast <br />Delivery</h3>
</div>
</div>
<!--Philosophy-->
<div class="philosophy container flex">
<div class="philosophy-item">
<h4 class="heading">PHILOSOPHY</h4>
<p>Over 75% of our brains are dedicated to one sense: vision. We believe everyone deserves to see the world, not matter what. That′s why we offer eye exams, custom fittings, and quick delivery at a low cost. It′s your vision that makes ours.</p>
</div>
<div class="philosophy-item">
<h4 class="heading">APPOINTMENTS</h4>
<p>Schedule an appointment by calling us at (312) 654-0987. We′re open Tuesday - Saturday, 9AM - 6PM.</p>
</div>
</div>
<!--Footer-->
<footer class="container flex">
<img src="resources/img/logo-black.png" alt="Tortoiseshell Optics Logo">
<p>Copyright Tortoiseshell Optics</p>
</footer>
</body>
</html>