-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
35 lines (33 loc) · 1.09 KB
/
contact.html
File metadata and controls
35 lines (33 loc) · 1.09 KB
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 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>Document</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="index.html" class="active">About</a>
<a href="register.html"
class="register">Registration</a>
<a href="contact.html" class="mycontact">Contact</a>
<a href="login.html" class="enter">Login</a>
</div>
<h2>Contact Form</h2>
<form action="">
<div class="container">
<label for="name">Name:</label>
<input type="text" id="name" name="fullname"
placeholder="Your name..">
<label for="email">E-mail</label>
<input type="text" id="email" name="email"
placeholder="Your e-mail..">
<label for="message">Message</label>
<textarea id="message" name="message" placeholder="Write something.." style="height:100px"></textarea>
<input type="submit" value="Submit">
</div>
</form>
</body>
</html>