forked from NobleKnight706/NobleKnight706.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
35 lines (27 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="./imgs/icon.png" />
<title>Epic Site</title>
<link rel="stylesheet" href="styleish.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" />
</head>
<body>
<div class="containerForum">
<h3 class="HeaderText" style="color:#ffff">Conact us</h3>
<form action="https://formsubmit.co/nicocarlozzi@gmail.com" method="POST">
<label for="fname" style="color:#ffff">Email</label>
<input type="text" id="email" name="email" placeholder="Your Email..">
<label for="fname" style="color:#ffff">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname" style="color:#ffff">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="subject" style="color:#ffff">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>