-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (65 loc) · 2.22 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="nav">
<nav id="left">
<ul>
<li><a href="">Permits & licensing</a></li>
<li><a href="">Town halls</a></li>
<li><a href="">Logs</a></li>
</ul>
</nav>
<nav id="right">
<ul>
<li>
<form>
<label>Search:</label>
<input type="text">
<input type="submit">
</form>
</li>
</ul>
</nav>
</div>
<div class="landing">
<img id="landing_image" src="https://images.unsplash.com/photo-1590417979481-cf107ff7cb5a?q=80&w=1548&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" \>
<h1>Welcome to Manchester, NH</h1>
<p class="subheading">A quaint, sedated New England town</p>
<button type="button">Permits & licensing</button>
<button type="button">Town halls</button>
<button type="button">Logs</button>
</div>
<div class="section">
<div class="carousel">
<span class="carousel_card">
<h2>The Puritan Backroom</h2>
<button type="button">Learn more</button>
</span>
<span class="carousel_card">
<h2>Chunky's</h2>
<button type="button">Learn more</button>
</span>
</div>
</div>
<div>
<div>
<h1>The home of Manchvegas</h1>
<p class="subheading">And other entertainments</p>
<button type="button">Dining</button>
<button type="button">Entertainment</button>
</div>
</div>
<div class="section">
<div class="carousel">
</div>
</div>
<div class="footer">
<footer>
</footer>
</div>
</body>
</html>