-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
140 lines (132 loc) · 5.21 KB
/
contact.html
File metadata and controls
140 lines (132 loc) · 5.21 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
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<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;
}
.contact-info {
background-color: #f8f9fa;
padding: 20px;
border-radius: 8px;
margin-top: 20px;
}
.contact-info h2 {
margin-bottom: 20px;
}
.contact-info p {
margin-bottom: 10px;
}
</style>
</head>
<body>
<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">Contact Us</h1>
<div class="row justify-content-center">
<div class="col-md-8">
<div class="contact-info">
<h2>Contact Information</h2>
<p><strong>Location:</strong> 1234 City Road, Ottawa, Ontario, K6V 7D4</p>
<p><strong>Operating Season:</strong> May - August</p>
<p><strong>Phone Number:</strong> (123) 456-7890</p>
<p><strong>Email:</strong> schoolofball@outlook.com</p>
<p><strong>Clubshouse Office Hours:</strong> Monday - Friday, 9 AM - 5 PM</p>
<p><strong>Social Media:</strong>
<a href="https://facebook.com" target="_blank">Facebook</a> |
<a href="https://twitter.com" target="_blank">Twitter</a> |
<a href="https://instagram.com" target="_blank">Instagram</a>
</p>
</div>
<div class="mt-5">
<h2>Send Us a Message</h2>
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" id="name" placeholder="Your Name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" id="email" placeholder="Your Email">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control" id="message" rows="5" placeholder="Your Message"></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
<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.3/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>