-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcities.html
More file actions
69 lines (64 loc) · 2.99 KB
/
Copy pathcities.html
File metadata and controls
69 lines (64 loc) · 2.99 KB
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>Cities General Page</title>
<meta name="description" content="Choose city page to navigate to">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<!--Header -->
<header>
<div class="njLogo"></div>
<span class="web-title"><a href="./index.html">STATE OF NEW JERSEY</a></span>
<nav class="nav-words">
<span class=>
<a href="./about.html">ABOUT</a>
</span>
<span class="cities">
<a href="./cities.html">CITIES
<ul class="nav-cities-menu">
<li><a href="cities-trenton.html">Trenton</a></li>
<li><a href="./cities-jersey-city.html">Jersey City</a></li>
<li><a href="cities-hackensack.html">Hackensack</a></li>
</ul>
</a>
</span>
<span>
<a href="./connect-web-form.html">CONNECT</a>
</span>
</nav>
<nav class="nav-menu">
<button class="menu-button"></button>
<nav class="button-nav-menu hidden">
<ul class="button-menu-list">
<li class="button-list-item"><a href="about.html">ABOUT</a></li>
<li class="button-list-item"><a href="cities.html">CITIES</a>
<li class="list-subitem"><a href="cities-trenton.html">Trenton</a></li>
<li class="list-subitem"><a href="cities-jersey-city.html">Jersey City</a></li>
<li class="list-subitem"><a href="cities-hackensack.html">Hackensack</a></li>
</li>
<li class="button-list-item"><a href="connect-web-form.html">CONNECT</a></li>
</ul>
</nav>
</nav>
</header>
<div id="cities-table-of-contents">
<h1 class="content-title">SELECT A CITY</h1>
<a href="cities-trenton.html" class="cities-card">TRENTON</a>
<a href="cities-jersey-city" class="cities-card">JERSEY CITY</a>
<a href="cities-hackensack.html" class="cities-card">HACKENSACK</a>
</div>
<div class="vertical-spacer"></div>
<footer>
<ul class="footer-list">
<li><a href="index.html">HOME</a></li>
<li><a href="cities.html">CITIES</a></li>
<li><a href="connect-web-form.html">CONTACT</a></li>
</ul>
<p class="CTA-statement">For more information about New Jersey, visit <a href="https://nj.gov/" target="_blank">nj.gov</a>, the official state website.</p>
</footer>
</body>
</html>