-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
46 lines (42 loc) · 1.52 KB
/
contact.html
File metadata and controls
46 lines (42 loc) · 1.52 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
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MY BLOG</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="content">
<div class="container">
<header>
<h2 id="name">Sachita Malhotra</h2>
<nav>
<ul>
<a class="active" href="index.html">
<li>Home</li>
</a>
<a href="blog.html">
<li>Blog</li>
</a>
<a href="contact.html">
<li>Contact</li>
</a>
</ul>
</nav>
</header>
</div>
<div class="drag">
<div class="feedback">
<h1 id=" form-contact ">give your feedback</h1>
<form action="#">
<label for="name">Name: </label>
<input id="rname" type="text" name="name" placeholder="enter your name">
<label for="email">Email-id</label>
<input id="email" type="email " name="email" placeholder="enter your name">
<label for="feedback">Feedback</label>
<textarea placeholder="enter your feedback"></textarea>
<input id="submit" type="submit" name="submit">
</form>
</div>
</div>
</div></body></html>