-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (72 loc) · 3.48 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<link href="./resources/css/reset.css" type="text/css" rel="stylesheet">
<link href="./resources/css/style.css" type="text/css" rel="stylesheet">
<title>Tortoiseshell Optics</title>
</head>
<body>
<!--Header-->
<!--Main-Banner-->
<header>
<div class="main-banner">
<div class="top-banner">
<div class="container">
<div class="logo"><img src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-5/tortoiseshell-optics/resources/images/logo-white.png"></div>
<span>Tortoiseshell Optics</span>
<ul>
<li>Services</li>
<li>Products</li>
<li>Contact</li>
</ul>
<ul class="mobile-nav container">
<li>Menu</li>
</ul>
</div>
</div>
<!--Image-Banner-->
<div class="image-banner">
<div class="djls">
DON'T JUST LOOK, SEE.
</div>
</div>
</div>
</header>
<!--Services-->
<div class="services">
<!--Comprehensive Exams-->
<div class="service"><img class="paper" src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-5/tortoiseshell-optics/resources/images/paper-icon.png"><div>Comprehensive Exams</div></div>
<!--Custom Fittings-->
<div class="service"><img class="ruler" src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-5/tortoiseshell-optics/resources/images/ruler-icon.png"><div>Custom Fittings</div></div>
<!--Fast Delivery-->
<div class="service"><img class="truck" src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-5/tortoiseshell-optics/resources/images/truck-icon.png"><div>Fast Delivery</div></div>
</div>
<!--Narrative-->
<div class="narrative">
<div class="container">
<div class="text philosophy">
<div>PHILOSOPHY</div>
<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="text appointments">
<div>APPOINTMENTS</div>
<p>Schedule an appointment by calling us at
(312) 654-0987. We're open Tuesday -
Saturday, 9AM - 6PM.</p>
</div>
</div>
</div>
<!--Footer-->
<footer class="container">
<div class="content">
<img class="logoblk" src="https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-5/tortoiseshell-optics/resources/images/logo-black.png">
<div class="copyright">Copyright Tortoiseshell Optics</div>
</div>
</footer>
</body>
</html>