-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-us.html
89 lines (73 loc) · 3.59 KB
/
contact-us.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
81
82
83
84
85
86
87
88
89
<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">
<title>Document</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet"
type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
<a class="navbar-brand h1 mb-0 text-white">TriV Tracker</a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#landingPageNav">
<span class="navbar-toggler-icon"></span>
</button>
<div id="landingPageNav" class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="index.html" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="contact-us.html" class="nav-link active">Using the Badger</a>
</li>
</ul>
</div>
</nav>
<div class="row" style="height: 38.5rem;">
<div class="col-md-6 bg-warning">
<div class="d-flex h-100 my-auto py-auto align-self-center">
<div class="container row justify-content-center align-self-center" data-aos="fade-up-right" data-aos-duration="1200">
<h1 class="display-4 d-block">Contact Us</h1>
</div>
</div>
</div>
<div class="col-md-6">
<div class="container d-flex h-100">
<div class="container row justify-content-center align-self-center" data-aos="fade-left" data-aos-duration="1200">
<form method="POST" action="https://formspree.io/official.hackspace@gmail.com">
<div class="row">
<div class="form-group col">
<label for="inputFirstName">First Name</label>
<input type="text" class="form-control" id="inputFirstName" placeholder="First name">
</div>
<div class="form-group col">
<label for="inputLastName">Last Name</label>
<input type="text" class="form-control" id="inputLastName" placeholder="Last name">
</div>
</div>
<div class="form-group">
<label for="inputEmail4">Email</label>
<input type="email" class="form-control" id="inputEmail" placeholder="Email">
</div>
<div class="form-group">
<label for="inputMsg">Message</label>
<textarea class="form-control" id="inputMsg" rows="3" placeholder="Message"></textarea>
</div>
</form>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init({ once: true });
</script>
</body>
</html>