-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactme.html
24 lines (21 loc) · 946 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
<!DOCTYPE html>
<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 ME</title>
</head>
<body style="background-color:rgb(170, 255, 0);text-align:center;font-size:large;font-family:fantasy;">
<form action="mailto:[email protected]" method="post">
<label name="fname" for="fname">FIRST NAME:</label>
<input type="text" name="fname" value="user first name" for="fname"><br>
<label name="lname" for="lname">LAST NAME:</label>
<input type="text" for="lname" value="user last name"><br>
<input type="submit" value="send">
<br>
<textarea value="Additional info" rows="10" cols="10" style="border: 10;border-color:blueviolet"></textarea>
<input type="submit" value="Add data">
</form>
</body>
</html>