-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
78 lines (64 loc) · 3.66 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Major+Mono+Display" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
</head>
<body class="body" onload="ClearForm()">
<div class="collapse" id="navbarToggleExternalContent">
<div class="p-4">
<h4><a href="epk.html" class="text-white h4">Home</a></h4>
<h4><a href="music.html" class="text-white h4">Music</a></h4>
<h4><a href="photos.html" class="text-white h4">Photos</a></h4>
<h4><a href="contact.html" class="text-white h4">Contact</a></h4>
</div>
</div>
<nav class="navbar navbar-dark">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarToggleExternalContent" aria-controls="navbarToggleExternalContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</nav>
<h1 class="sub-title">Contact</h1>
<p class="contact-paragraph">For collaboration or booking inquiries, please fill out and submit the form below.</p>
<div class="container">
<h3>Contact Form</h3>
<form id="contactForm" action="https://getform.io/f/a012559c-d817-4974-9070-05eba899e003" method="POST" name="contactForm">
<label for="name">Name</label>
<input id="name" name="name" type="text" required placeholder="Name"/>
<br>
<label for="email">Email</label>
<input id="email" name="email" type="email" required placeholder="Email Address"/>
<br>
<label for="message">Message</label><br>
<textarea id="textarea" name="message" cols="30" rows="10" placeholder="Enter your message here ..." required> </textarea>
<div class="center">
<input name="submit" type="submit" value="Submit">
</div>
</form>
</div>
<div class="footer">
<footer style="text-align:center">
<a href="https://msincredible.bandcamp.com/" target="_blank"><i class="fab fa-bandcamp"></i></a>
<a href="mailto:[email protected]" target="_blank"><i class="fas fa-envelope-square"></i></a>
<a href="https://www.facebook.com/msincrediblehulk/" target="_blank"><i class="fab fa-facebook-square"></i></a>
<a href="https://www.instagram.com/msincrediblehulk/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://soundcloud.com/ms-incredible-hulk" target="_blank"><i class="fab fa-soundcloud"></i></a>
<a href="https://taleamonet.tumblr.com/" target="_blank"><i class="fab fa-tumblr-square"></i></a>
<a href="https://twitter.com/TaleaMonet" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.youtube.com/channel/UCHuI6jmQBHEi8bPr7YlKvCw/playlists?view_as=subscriber" target="_blank"><i class="fab fa-youtube"></i></a>
<a href="https://cash.app/$TaLeaMonet" target="_blank"><i class="fas fa-donate"></i></a>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
<script type='text/javascript'>
function ClearForm(){
document.contactForm.reset();
}
</script>
</body>
</html>