-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage.html
36 lines (36 loc) · 1.32 KB
/
message.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Message Box</title>
<link rel="stylesheet" href="messgage.css">
</head>
<body>
<div class="container">
<div class="message-box">
<h1>Message Me</h1>
<div class="input-field">
<form action="https://api.web3forms.com/submit" method="POST">
<input type="hidden" name="access_key" value="19a4c457-454f-4114-8c90-1b41cc942ef4">
<div class="input-box">
<input type="text" placeholder="Name" name="first_name">
</div>
<div class="input-box">
<input type="email" placeholder="Email ID" name="email">
</div>
<div class="input-box">
<input type="message" placeholder="Message Me" name="mssg">
</div>
<div class="sumbit-btn">
<button>
sumbit
</button>
</div>
</form>
</div>
</div>
</div>
<script src="message.js"></script>
</body>
</html>