-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
80 lines (64 loc) · 4.14 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
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UTSAM</title>
<!-- INCONSCOUT CDN -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.8/css/line.css">
<!-- Google fonts -->
<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=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">
<link rel = "stylesheet" href="css/style.css">
<link rel = "stylesheet" href="css/contacts.css">
<link rel = "stylesheet" href="css/involve.css">
</head>
<body>
<nav>
<div class="container nav__container">
<a href="index.html" class="logo-link">
<img src="images/logo.png" alt="UTSAM Logo" style="width: 5rem;">
<h1>UTSAM</h1></a>
<ul class="nav__menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">Who We Are</a></li>
<li><a href="involve.html">Get Involved</a></li>
<li class="current__nav"><a href="contact.html">Contact Us</a></li>
</ul>
<button class ="nav_button" id="open-menu-btn"><i class="uil uil-bars"></i></button>
<button class ="nav_button" id="close-menu-btn"><i class="uil uil-multiply"></i></button>
</div>
</nav>
<section class="contact">
<div class = "container contact__container">
<aside class="contact__aside">
<h2>Contact Us</h2>
<p>Interested sponsoring, joining or have any general inquiries.
Let us know!
</p>
<ul class="contact__socials">
<li> <a href="https://www.instagram.com/uoftsam/" target="_blank" rel="noopener noreferrer" class="btn social__btn"><i class="uil uil-instagram"></i> @uoftsam</a></li>
<li> <a href="https://www.facebook.com/groups/1467982100149335/" target="_blank" rel="noopener noreferrer" class="btn social__btn"><i class="uil uil-facebook"></i> UTSAM </a></li>
<li> <a href="https://www.tiktok.com/@uoftsam?_t=8mWVdY4uL0o&_r=1" target="_blank" rel="noopener noreferrer" class="btn social__btn">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="24" height="24" style="vertical-align: middle;">
<path fill="#fcdc17" d="M25 6h-1c-1.103 0-2-.897-2-2V3a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v17.5c0 1.378-1.121 2.5-2.5 2.5S11 21.878 11 20.5s1.121-2.5 2.5-2.5c.089 0 .168-.029.25-.05.082.021.161.05.25.05a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1c-.089 0-.168.029-.25.05-.082-.021-.161-.05-.25-.05C8.813 12 5 15.813 5 20.5S8.813 29 13.5 29c4.461 0 8.124-3.457 8.466-7.832.01-.057.034-.109.034-.168v-9.338c1.554.529 3.049.34 3.132.329A1 1 0 0 0 26 11V7a1 1 0 0 0-1-1zm-1 4.023c-.688-.039-1.647-.21-2.368-.798A1 1 0 0 0 20 10v10.5c0 3.584-2.916 6.5-6.5 6.5S7 24.084 7 20.5c0-3.415 2.649-6.218 6-6.475v2.025c-2.244.252-4 2.139-4 4.449 0 2.481 2.019 4.5 4.5 4.5s4.5-2.019 4.5-4.5V4h2c0 2.206 1.794 4 4 4v2.023z"></path>
</svg> @uoftsam </a></li>
<li> <a href= "mailto: [email protected]" class="btn social__btn"> <i class="uil uil-envelope"></i> [email protected]</a></li>
</ul>
</aside>
<form class="contact__form" action="https://formspree.io/f/xdoqjaww" method="POST">
<div class="form__name">
<input type="text" name="Name" placeholder="Name" required>
</div>
<input type="email" name="Email Address" placeholder="Your Email" required>
<textarea name="Message" rows="7" required placeholder=" Message"></textarea>
<button type="submit" class="btn btn-primary ">Send Message</button>
</form>
</div>
</section>
<footer class = "footer">
</footer>
<script src="./main.js"></script>
</body>
</html>