-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
69 lines (69 loc) · 2.28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tortoiseshell Optics</title>
<link href="./resources/css/reset.css" type="text/css" rel="stylesheet" />
<link href="./resources/css/style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<header class="banner">
<div class="container">
<div class="head">
<!-- LOGO IMAGE/TEXT -->
<div class="logo">
<img src="./resources/images/logo-white.png" /><span>Tortoiseshell Optics</span>
</div>
<!-- NAVIGATION -->
<nav>
<ul class="nav">
<li>Services</li>
<li>Products</li>
<li>Contact</li>
</ul>
<ul class="mobile-nav">
<li>Menu</li>
</ul>
</nav>
</div>
<div class="main">
<div class="content">
<h1>DON'T JUST LOOK, SEE.</h1>
</div>
</div>
</div>
</header>
<!-- SERVICES CONTENT -->
<div class="services">
<div class="service">
<img src="./resources/images/paper-icon.png" class="paper-icon" />
<div><p>Comprehensive Exams</p></div>
</div>
<div class="service service2">
<img src="./resources/images/ruler-icon.png" />
<div><p>Custom Fittings</p></div>
</div>
<div class="service">
<img src="./resources/images/truck-icon.png" />
<div><p>Fast Delivery</p></div>
</div>
</div>
<!-- INFORMATION CONTENT -->
<div class="container">
<div class="information">
<div class="info">
<h2>PHILOSOPHY</h2>
<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="info">
<h2>APPOINTMENTS</h2>
<p>Schedule an appointment by calling us at (312) 654-0987. We’re open Tuesday - Saturday, 9AM - 6PM.</p>
</div>
</div>
</div>
<!-- FOOTER CONTENT -->
<footer class="container">
<img src="./resources/images/logo-black.png" /><span>Copyright Tortoiseshell Optics</span>
</footer>
</body>
</html>