-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
77 lines (57 loc) · 2.61 KB
/
contact.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<title>UWEC Waterski and Wakeboard Team</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/contact.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito">
</head>
<body>
<header>
<h1 class="header">UW - Eau Claire: Waterski and Wakeboard Team</h1>
<div class="navbar">
<a class="navbar-link" href="index.html">Home</a>
<a class="navbar-link" href="practices.html">Practices</a>
<a class="navbar-link" href="tournaments.html">Tournaments</a>
<a class="navbar-link" href="executive.html">Executive Board</a>
<a class="navbar-link" href="gallery.html">Photo Gallery</a>
<a class="navbar-link" href="contact.html">Contact</a>
<a class="navbar-link" href="affiliations.html">Affiliations</a>
<a class="navbar-link" href="equipment.html">Equipment Use</a>
<a class="navbar-link" href="events.html">Social Events</a>
<a class="navbar-link" href="join.html">How to Join</a>
</div>
</header>
<div class="content">
<h1>Contact Us</h1>
<p class="contacttext">For any questions or concerns you have, please email us or call us at 262-622-3449</p>
<form action="contact.php" method="post" class="contactform">
<p class="formrow">
<input type="text" class= "form-control" id="name" name="name" placeholder = "Name">
</p>
<p class="formrow">
<input type="email" class= "form-control" id="email" name="email" placeholder = "Email Address">
</p>
<p class="formrow">
<input type="text" class= "form-control" id="subject" name="subject" placeholder = "Subject">
</p>
<p class="formrow">
<textarea id="message" class= "form-control" name="message" placeholder = "Enter Message..."></textarea>
</p>
<p class="formrow">
<input type="submit" value="Submit">
</p>
</form>
<a class="admin-btn" href="login.php">Admin Login</a>
</div>
<footer>
<div class="footer">
The Waterski and Wakeboard Team is a recognized Club Sports team at the University of Wisconsin - Eau Claire
</div>
</footer>
</body>
</html>