-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
87 lines (84 loc) · 4.3 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>bbjme's website</title>
<!--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=Nunito+Sans:wght@200&display=swap" rel="stylesheet">
<!--Styleheet location-->
<link rel="stylesheet" href="style.css">
<!--Icon links-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!--Website Tab Icon-->
<link rel="icon" href="media/1998 halloween yellow teletubby.jpg">
<!--Canonical Tag-->
<link rel="canonical" href="https://bbjme.com/contact">
</head>
<body>
<!-- Navbar -->
<div class="nav">
<div class="container flex">
<label class="logo">bbjme</label>
<ul class="icons">
<li><a href="https://www.youtube.com/channel/UCAUbIF9g80E6phY1_KUtQeA" target="_blank"
rel="noopener noreferrer"><i class="fab fa-youtube"></i></a></li>
<li><a href="https://soundcloud.com/bbjme" target="_blank" rel="noopener noreferrer"><i
class="fab fa-soundcloud"></i></a></li>
<li><a href="https://www.instagram.com/officialbbjme/" target="_blank" rel="noopener noreferrer"><i
class="fab fa-instagram"></i></a></li>
<li><a href="https://www.facebook.com/officialbbjme" target="_blank" rel="noopener noreferrer"><i
class="fab fa-facebook-f"></i></a></li>
<li><a href="https://www.twitch.tv/bbjme" target="_blank" rel="noopener noreferrer"><i
class="fab fa-twitch"></i></a>
</li>
<li><a href="https://twitter.com/officialbbjme" target="_blank" rel="noopener noreferrer"><i
class="fab fa-twitter"></i></a></li>
<li><a href="https://www.tiktok.com/@officialbbjme?lang=en" target="_blank" rel="noopener noreferrer"><i
class="fab fa-tiktok"></i></a></li>
<li><a href="https://www.keakr.com/en/profile/bbjme/keaks" target="_blank" rel="noopener noreferrer"><i
class="fab fa-kaggle"></i></a></li>
</ul>
<ul class="sections">
<li><a href="https://bbjme.com/">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="new-song.html">New Song</a></li>
<li><a href="song-covers.html">Song Covers</a></li>
<!-- <li><a href="albums.html">Albums</a></li> -->
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<!-- Contact Form Section -->
<div class="contact-section">
<div class="contact-container">
<div class="contact-form-section">
<div class="contact-content">
<form action="https://formsubmit.co/officialbbjme@gmail.com" method="POST">
<div class="inputBox">
<input type="text" name="name" placeholder="Name" required>
<!--<label for="name">Your Name</label>-->
</div>
<div class="inputBox">
<input type="text" name="email" placeholder="Email" required>
<!--<label for="email">Email</label>-->
</div>
<div class="inputBox">
<textarea name="message" placeholder="Message" required></textarea>
<!--<label for="message">Type Your Message</label>-->
</div>
<button type="submit">Send!</button>
</form>
</div>
</div>
<div class="contact-text-section">
<h1>Shoot Me a Message!</h1>
<p>For any music inquiries and other questions, feel free to hmu!</p>
</div>
</div>
</div>
</body>
</html>