-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (27 loc) · 947 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Leetteers</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!--scripts-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="darkmode.js"></script>
<!--logo and dark mode toggle-->
<div class="navbar">
<a href="#" class="logo">LEETTEERS</a>
<button onclick="d_m()" id="toggle">
<div class="button">🌓</div>
</button>
</div>
<!--input boxes using GetForm-->
<form action="https://getform.io/f/33a1233d-0c3c-4ec6-8fab-98913039c9d3" method="POST" class="letter">
<textarea type="email" name="email" id="sender">Your Email</textarea>
<textarea type="text" name="message" id="message">Your message goes here....</textarea>
<button type="submit" class="submit">Send</button>
</form>
<!--the end-->
</body>
</html>