-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
187 lines (179 loc) · 7.73 KB
/
contact.html
File metadata and controls
187 lines (179 loc) · 7.73 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html>
<head>
<title>Back in the Game</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Styling -->
<link rel="stylesheet" href="contact.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Average&display=swap" rel="stylesheet">
</head>
<body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light mb-4" style="background-color: #ECEEFF">
<div class="container-fluid">
<!-- Clicking on the Logo goes to the Homepage (Linked to Homepage) -->
<a href="index.html"><img src="img/logo.png" alt="" width="120" height="80"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="nav navbar-nav ms-auto">
<!-- Home Nav -->
<li class="nav-item">
<a class="nav-link active" style="margin-right: 30px;" aria-current="page" href="index.html">Home</a>
</li>
<!-- About Nav -->
<li class="nav-item">
<a class="nav-link active" style="margin-right: 30px" href="about.html">About</a>
</li>
<!-- Programs Nav with Dropdown for Athletes and Performers -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" style="color: black; margin-right: 30px;" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false">Programs</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="programs_athlete.html">Athletes</a></li>
<li><a class="dropdown-item" href="programs_performer.html">Performers</a></li>
</ul>
</li>
<!-- Podcasts Nav -->
<li class="nav-item">
<a class="nav-link active" style="margin-right: 30px" href="podcasts.html">Podcasts</a>
</li>
<!-- Contact Nav -->
<li class="nav-item">
<a class="nav-link active" style="margin-right: 30px" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Page content -->
<br>
<!-- This is the Contact Section of the Contact Page -->
<!-- This lists out all contact information for Back in the Game -->
<div class="container">
<div class="row">
<div class = "col-12 col-md-6">
<br>
<br>
<h3 class = "averageFont">Contact Us</h3>
<br>
<div class = "contactUs">
<p>
<b>Back in the Game:</b>
<br>
<br>
<!-- Mobile (Phone Number) Information -->
<b>Mobile:</b> (412) 343-0613
<br>
<br>
<!-- Back in the Game's email -->
<b>Email:</b> backinthegameemail@gmail.com
<br>
<br>
<!-- This is their Fax Number -->
<b>Fax:</b> 5XX-XX
<br>
<br>
<!-- This is Back in the Game's Office -->
<b>Office: </b> 20 Cedar Blvd, Suite 204 Pittsburgh PA, 15213
</p>
</div>
</div>
<!-- Contacting Form Submission -->
<!-- This is the same column width as the contact information section of column size 6 -->
<div class = "col-12 col-md-6">
<br><br>
<h3 class = "averageFont mailList"> Join Our Mailing List </h3>
<!-- This uses our Javascript of the email validation -->
<form class="form-inline" onsubmit="return validEmail()">
<!-- First & Last Name Box -->
<label for="name" class="form-label"><b>First & Last Name:</b></label>
<input type="text" class="form-control" id="name" placeholder="John Smith" required><br>
<!-- Email Box -->
<label for="email_address" class="form-label"><b>Enter Email:</b></label>
<input type="email" class="form-control" id="email_address" placeholder="johnsmith@gmail.com" required><br>
<!-- Question & Comments Box -->
<label for="comments" class="form-label"><b>Questions, Comments:</b></label>
<textarea class="form-control" id="comments" placeholder="Questions?" rows="3"></textarea><br>
<button type="submit" class="btn btn-primary mb-3">Submit</button>
</form>
</div>
</div>
</div>
<br>
<br>
<br>
<!-- This is the FAQ section of the Contact Page -->
<div>
<h3 class = "FAQ averageFont"><b>Frequently Asked Questions</b></h3>
<br>
<br>
<div class="container">
<!-- We're using a container and having the first two questions in 2 equal sized columns of size 6 on the first row -->
<div class="row">
<div class="col-12 col-md-6">
<!-- First FAQ -->
<em class="averageFont questions">How long is the program?</em>
<br>
<br>
<p>
The program is a self-paced program. There are 8 total modules with PowerPoint presentations and exercises. It is suggested that you take your time and begin to incorporate the exercies and knowledge you gain into your current training.
</p>
</div>
<div class="col-12 col-md-6">
<!-- Second FAQ -->
<em class="averageFont questions">What will I learn from the program?</em>
<br>
<br>
<p class="openSansFont">
The Back in the Game ® program will teach you the 6 core mental skills for success. You will be provided with multiple exercises for each skill to help you further develop these skills.
</p>
</div>
</div>
<br>
<div class="row">
<div class="col-0 col-md-3">
</div>
<!-- Since there is 3 questions, we placed the third question on its own row in a center column -->
<!-- We placed columns sized 3 on the left and right side that are empty and column sized 6 for this question -->
<div class="col-12 col-md-6">
<em class = "averageFont questions">Is this program for individual and teams?</em>
<br>
<br>
<p>
This program is designed for both individuals and teams. You can use this to further develop your individual mental health game or coaches can use this for their team to provide an additional resource to their players.
</p>
<br>
</div>
<div class="col-0 col-md-3">
</div>
</div>
</div>
</div>
<br>
<!-- Footer -->
<footer class="footer">
<div class="container p-4 pb-0">
<!-- Social media icons and links -->
<div class="mb-4">
<a href="https://www.facebook.com/BetterInstitute/">
<span class="facebook"> <img src="img/fb.png" alt="" width ="50" height="50"></span>
</a>
<a href="https://www.linkedin.com/company/betterinstitute">
<span class="linkedin"> <img src="img/linkedin.png" alt="" width ="50" height="50"></span>
</a>
</div>
<!-- Copyright for Better Institute -->
<p>© Copyright Learn with The Better Institute® 2021</p>
</div>
</footer>
<!-- Link to Javascript for Email Validation-->
<script src = "valid_email.js"></script>
</body>
</html>