-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
68 lines (61 loc) · 2.53 KB
/
contact.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!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>Blog</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/utils.css">
<link rel="stylesheet" href="css/search.css">
</head>
<body>
<header class="m-1">
<nav class="navigation max-width-1 margin-auto">
<div class="navLeft">Logo</div>
<div class="navCenter">
<ul class="nav-items">
<li class="nav-item"><a href="/blog-in-html-css/index.html">Home</a></li>
<li class="nav-item"><a href="/blog-in-html-css/contact.html">Contact</a></li>
</ul>
</div>
<form action="/blog-in-html-css/search.html">
<div class="navRight">
<input type="search" name="query" class="form-input " placeholder="Search Hear">
<button class="btn btn-pink">Search </button>
</div>
</form>
</nav>
</header>
<main class="m-1">
<div class="max-width-1 margin-auto">
<h1 class="m-1">Contact Us</h1>
<div class="contactDiv">
<div class="form-content">
<label for="name">Enter your name</label>
<input type="text" id="name" class="form-input" placeholder="Enter your name">
</div>
<div class="form-content">
<label for="email">Enter your email</label>
<input type="email" id="email" class="form-input" placeholder="Enter your email">
</div>
<div class="form-content">
<label for="tel">Enter your contact number</label>
<input type="tel" id="tel" class="form-input" placeholder="Enter your contact number">
</div>
<div class="form-content">
<label for="textarea">Enter your message</label>
<textarea name="textarea" id="textarea" cols="20" class="form-input" rows="10"
placeholder="Enter Your Text Hear"></textarea>
</div>
<div class="m-2">
<button class="btn btn-pink" type="submit">Submit</button>
</div>
</div>
</div>
</main>
<footer class="center">
© Rajat Rawal
</footer>
</body>
</html>