-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcamps.html
More file actions
130 lines (119 loc) · 4.22 KB
/
camps.html
File metadata and controls
130 lines (119 loc) · 4.22 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Camps</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #d6d6f5;
}
.bold-text {
font-weight: bold;
}
.navbar .logo {
width: 150px;
transform: translateX(140px);
}
.custom-navbar {
background-color: #1E1E1E;
}
.navbar .School1 {
color: white;
font-size: 35px;
font-weight: bold;
padding-top: 65px;
transform: translateX(-55px);
}
.nav-itema{
color: white;
text-decoration: none;
font-size: 20px;
margin-left: 50px;
}
.nav-itemb{
color: white;
text-decoration: none;
font-size: 20px;
margin-right: 50px;
}
.nav-link{
color: white;
}
.camp-card {
background-color: black;
color: white;
text-align: center;
padding: 20px;
margin: 10px;
}
.camp-card img {
width: 100%;
height: 250px;
}
</style>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg custom-navbar">
<ul class="navbar-nav mr-auto">
<li class="nav-itema">
<a class="nav-link font-weight-bold" href="index.html">Home</a>
</li>
<li class="nav-itema">
<a class="nav-link font-weight-bold" href="about.html">About</a>
</li>
<li class="nav-itema">
<a class="nav-link font-weight-bold" href="camps.html">Camps</a>
</li>
</ul>
<a class="navbar-brand d-flex align-items-center mx-auto" >
<img src="logo.png" alt="School of Ball" class="logo">
<span class="School1">School of Ball</span>
</a>
<ul class="navbar-nav ml-auto">
<li class="nav-itemb">
<a class="nav-link font-weight-bold" href="community.html">Community</a>
</li>
<li class="nav-itemb">
<a class="nav-link font-weight-bold" href="contact.html">Contact</a>
</li>
<li class="nav-itemb">
<a class="nav-link font-weight-bold" href="register.html">Register</a>
</li>
</ul>
</nav>
<div class="container">
<h1 class="text-center mt-5">Our Camps</h1>
<div class="row mt-4">
<div class="col-md-4">
<div class="camp-card">
<img src="quarterback.jpg" alt="Quarterback">
<h3>Quarterback Camp</h3>
</div>
</div>
<div class="col-md-4">
<div class="camp-card">
<img src="receiver.jpg" alt="Receiver">
<h3>Wide Receiver Camp</h3>
</div>
</div>
<div class="col-md-4">
<div class="camp-card">
<img src="db.jpg" alt="Defensive Back">
<h3>Defensive Back Camp</h3>
</div>
</div>
</div>
</div>
<!-- jQuery and Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>