-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (75 loc) · 3.42 KB
/
index.html
File metadata and controls
78 lines (75 loc) · 3.42 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
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DC Without A Car</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
</head>
<style>
.container-fluid {
padding-left: 0;
padding-right: 0;
}
</style>
<body>
<!-- Bootstrap 5.3 colored navbar -->
<nav class="navbar navbar-expand-sm bg-primary navbar-dark">
<div class="container-fluid">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active text-warning" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</nav>
<!--Bootstrap 5.3 jumbotron-->
<div class="container-fluid mt-3">
<div class="mt-4 p-5 bg-warning text-important rounded">
<h1 class="text-primary">Getting Around DC Without A Car!</h1>
<p>Tired of spending hours of your valuable time in traffic or spending your hard earned cash on parking. Find another way to get around DC without a car!</p>
</div>
</div>
<!--Bootstrap 5.3 three cards-->
<div class="container-fluid mt-5">
<div class="d-flex flex-wrap justify-content-between gap-3">
<div class="card flex-fill text-center" style="min-width: 18rem;">
<div class="card-body">
<i class="bi bi-person-walking" style="font-size: 2rem; color: goldenrod;"></i>
<h5 class="card-title text-primary">Walking</h5>
<p class="card-text">Very Walkable City! Has a Walk Score of 77%</p>
<a href="#" class="btn btn-primary">Most Walkable Neighborhoods</a>
</div>
</div>
<div class="card flex-fill text-center" style="min-width: 18rem;">
<div class="card-body">
<i class="bi bi-bicycle" style="font-size: 2.5rem; color: goldenrod;"></i>
<h5 class="card-title text-primary">Biking</h5>
<p class="card-text">Bike-Friendly City! Has a Biking Score of 69%.</p>
<a href="#" class="btn btn-primary">Most Bikeable Neighborhoods</a>
</div>
</div>
<div class="card flex-fill text-center" style="min-width: 18rem;">
<div class="card-body">
<i class="bi bi-train-front" style="font-size: 2rem; color: goldenrod;"></i>
<h5 class="card-title text-primary">Transit</h5>
<p class="card-text">Excellent Public Tranportation! Has a transit Score rating 71%.</p>
<a href="#" class="btn btn-primary">Metro Transit Map</a>
</div>
</div>
</div>
</div>
<!--Bootstrap container-fluid for footer-->
<div class="container-fluid bg-primary p-4 mt-5 text-warning text-center">
<p class="display-6 mb-3">DC Without A Car</p>
<small class="text-warning">©2025 by Angela Ruslander</small>
</div>
</body>
</html>