-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
98 lines (86 loc) · 3.98 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<link href="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/240/apple/325/musical-keyboard_1f3b9.png" rel="icon">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
<script src="script.js" defer></script>
<title>Hear Harmony</title>
</head>
<body class="d-flex flex-column min-vh-100" data-title="contact-page">
<!--Navigation bar-->
<nav class="navbar navbar-expand-md navbar-dark p-2">
<div class="container-fluid">
<!--Nav Brand-->
<a class="navbar-brand fs-4" href="index.html">Hear Harmony</a>
<button aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler" data-bs-target="#navbar" data-bs-toggle="collapse" type="button">
<span class="navbar-toggler-icon"></span>
</button>
<!--Nav items-->
<div class="collapse navbar-collapse" id="navbar">
<ul class="navbar-nav me-auto">
<li class="nav-item"><a class="nav-link" href="index.html">Train</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About</a></li>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact</a></li>
</ul>
<!--Dark mode switch-->
<form class="ms-auto py-2">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="dark-switch" value="no">
<label class="form-check-label" id="dark-label" for="dark-switch">Dark mode</label>
</div>
</form>
</div>
</div>
</nav>
<main>
<form accept-charset="UTF-8" action="https://formspree.io/f/xzboolov" method="POST">
<div class="container p-3 p-md-5 my-4" id="contact-form">
<div class="text-center">
<h1 class="mb-3">Get in touch</h1>
</div>
<div class="row">
<div class="col-md-6 pt-md-2 pb-2">
<div class="form-group">
<input id="form-name" type="text" name="name" class="form-control" placeholder="First name" required>
</div>
</div>
<div class="col-md-6 py-2">
<div class="form-group">
<input id="form-lastname" type="text" name="lastname" class="form-control" placeholder="Last name" required>
</div>
</div>
</div>
<div class="row">
<div class="form-group py-2">
<input id="form-email" type="email" name="email" class="form-control" placeholder="E-mail address" required>
</div>
</div>
<div class="row">
<div class="form-group pt-2">
<textarea id="form-message" name="message" class="form-control" placeholder="Write your message here..." rows="4" required></textarea>
</div>
</div>
<div class="row">
<div class="text-center py-3">
<input type="submit" class="btn btn-success btn-send mx-auto" id="contact-submit" value="Send Message">
</div>
</div>
<div class="row">
<i>Alternatively, feel free to open an issue on <a href="https://github.com/keyxcode/hear-harmony/issues">GitHub</a></i>
</div>
</div>
</form>
</main>
<!--Footer-->
<footer class="text-center mt-auto">
<div class="container p-3">
All rights reserved © <span>keyxcode</span>
</div>
</footer>
</body>
</html>