-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathContact.html
More file actions
37 lines (33 loc) · 1.02 KB
/
Contact.html
File metadata and controls
37 lines (33 loc) · 1.02 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
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact</title>
<link rel="stylesheet" type="text/css" href="style1.css">
</head>
<body>
<div id="container">
<header id = "main_header">
<nav id="main_nav">
<a href="index.html">About</a>
<a href="registration.html">Register</a>
<a href="login.html">Log In</a>
</nav>
</header>
<main id="main">
<div class="log">
<p>Name:</p>
<input type="text" name="fname" id="name" required placeholder="Enter your Full name">
<p>Email:</p>
<input type="email" id="email" name="email" required placeholder="Enter your Email Address">
<p>Message:</p>
<a href=""><textarea name="comment" placeholder="Enter your message here"></textarea>
<a href=""><input type="submit" name="Submit"></a>
</div>
</main>
<footer id ="main_footer">
</footer>
</div>
</body>
</html>