-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactme.html
24 lines (23 loc) · 948 Bytes
/
contactme.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="style/styles.scss">
</head>
<body>
<h1>Fill the details</h1>
<form action="mailto:afnanandul234@hotmail.com" method="post">
<label for="email">Email:</label> <br>
<input type="email" name="E-mail" required > <br>
<label for="F-Name">First name:</label><br>
<input type="text" name="F-name" value="" required><br>
<label for="L-Name">Last name:</label><br>
<input type="text" name="L-name" value="" required><br><br>
<label for="messsge">Your message:</label> <br>
<textarea name="message" rows="10" cols="30"></textarea> <br>
<input type="submit" value="Submit">
</form>
</body>
</html>