-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (67 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>333 Cleaners</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="main.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="jumbotron">
<img class="img-responsive" src="img/Cleaners.png">
</div>
<div class="top-buffer"></div>
<div class="text-center"> <h1>Services</h1> </div>
<div class="top-buffer"></div>
<div class="container text-center icons">
<div class="row">
<div class="top-buffer"></div>
<div class ="col-xs-4">
<img src="img/thread.png"> <br><br>
Expert Alterations
</div>
<div class="top-buffer"></div>
<div class ="col-xs-4">
<img src="img/hanger.png"> <br><br>
Dry Cleaning
</div>
<div class="top-buffer"></div>
<div class ="col-xs-4">
<img src="img/green.png"> <br><br>
Eco-Friendly
</div>
</div>
</div>
<br><br><br>
<div class="top-buffer"></div>
<div class="text-center"> <h1>Hours of Operation</h1> </div>
<div class="top-buffer"></div>
<div class="table-responsive">
<table class="table">
<tbody>
<tr>
<td> Sunday </td>
<td> Closed </td>
</tr>
<tr>
<td> Monday-Friday </td>
<td> 7AM - 7PM </td>
</tr>
<tr>
<td> Saturday </td>
<td> 8AM - 6PM </td>
</tr>
</tbody>
</table>
</div>
<div class="top-buffer"></div>
<div class="text-center"> <h1>Contact Us:</h1> </div>
<div class="top-buffer"></div>
<div class="text-center"> <h2>(773) 333-4567</h1> </div>
</body>
</html>