Skip to content

Commit a6f421d

Browse files
Add Header to recommendations and fix all broken links
1 parent 38709bb commit a6f421d

File tree

5 files changed

+82
-4
lines changed

5 files changed

+82
-4
lines changed

2024Hazardous/2024hazardous.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h1 class="header-text">2024 Hazardous Parking Violations</h1>
1414

1515
<nav>
1616
<a href="../../2024parkingall/2024parking.html">2024 Parking Summons</a>
17-
<a href="recommendations.html">Recommendations</a>
17+
<a href="../../recommendations/recommendations.html">Recommendations</a>
1818
<a href='../../our-team/index.html'>Learn more about our team</a>
1919
</nav>
2020
</header>

2024parkingall/2024parking.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h1 class="header-text">2024 All Parking Violations</h1>
1414

1515
<nav>
1616
<a href="../../2024hazardous/2024hazardous.html">2024 Hazardous Parking Summonses</a>
17-
<a href="recommendations.html">Recommendations</a>
17+
<a href="../../recommendations/recommendations.html">Recommendations</a>
1818
<a href='../../our-team/index.html'>Learn more about our team</a>
1919
</nav>
2020
</header>

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<h1 class="header-text">2026 Boston Parking Enforcement Plan</h1>
1414

1515
<nav>
16-
<a href="2024parkingall/2024parking.html">2024 Parking Summons</a>
16+
<a href="2024parkingall/2024parking.html">2024 Parking Summonses</a>
1717
<a href="2024hazardous/2024hazardous.html">2024 Hazardous Hot Spots</a>
18-
<a href="recommendations.html">Recommendations</a>
18+
<a href="recommendations/recommendations.html">Recommendations</a>
1919
<a href='our-team/index.html'>Learn more about our team</a>
2020
</nav>
2121
</header>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>2024 Hazardous Parking Violations</title>
5+
<link rel="stylesheet" type="text/css" href="../styles/recommendations.css">
6+
</head>
7+
8+
<body>
9+
<div class="top-bar"></div>
10+
11+
<header class ="site-header">
12+
<img src="../images/bostonlogo.jpg" alt="bostonlogo" width="80" class="logo">
13+
<h1 class="header-text">Recommendations</h1>
14+
15+
<nav>
16+
<a href="../../2024parkingall/2024parking.html">2024 Parking Summons</a>
17+
<a href="../../2024hazardous/2024hazardous.html">2024 Hazardous Hot Spots</a>
18+
<a href='../../our-team/index.html'>Learn more about our team</a>
19+
</nav>
20+
</header>
21+
<div class="separator-bar"></div>
22+
23+
<html>

styles/recommendations.css

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
html {
2+
background-color: #red;
3+
}
4+
.top-bar {
5+
height: 40px;
6+
background-color: #0b2a4a; /* dark blue */
7+
width: 100%;
8+
9+
10+
}.site-header {
11+
position: relative;
12+
text-align: center;
13+
padding: 20px 0;
14+
}
15+
16+
/* Logo flush left */
17+
.logo {
18+
position: absolute;
19+
left: 20px;
20+
top: 50%;
21+
transform: translateY(-50%);
22+
max-width: 80px;
23+
height: auto;
24+
}
25+
26+
/* Header text centered */
27+
.header-text {
28+
margin: 0;
29+
font-size: 2.0em;
30+
color: #0b2a4a;
31+
font-family: "Lucida Handwriting", cursive;
32+
}
33+
.site-header nav {
34+
margin-top: 15px;
35+
}
36+
37+
.site-header nav a {
38+
margin: 0 15px;
39+
text-decoration: none;
40+
font-weight: normal;
41+
color: #FF5B00;
42+
text-transform: uppercase;
43+
font-family: "Garamond", sans-serif;
44+
}
45+
46+
.site-header nav a:hover {
47+
text-decoration: underline;
48+
}
49+
50+
.separator-bar {
51+
52+
height: 30px;
53+
background-color: #0b2a4a; /* dark blue */
54+
width: 100%;
55+
}

0 commit comments

Comments
 (0)