-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
91 lines (73 loc) · 3.29 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!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>2.KnowledgeHut</title>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="page-container">
<div class="nav">
<nav>
<div class="logo">
<img src="https://source.unsplash.com/random/285x285/?random" alt="">
<div class="title">KnowledgeHut</div>
</div>
<ul>
<li>
<a href="./index.html">Home</a>
</li>
<li>
<a href="./about.html">About</a>
</li>
<li>
<a href="./project.html">Project</a>
</li>
<li class="active">
<a href="./contact.html">Contact Us</a>
</li>
</ul>
</nav>
</div>
<div class="maintext">Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime animi harum sed architecto
rem necessitatibus
aperiam, sit facilis itaque sapiente eveniet, rerum voluptas, accusamus ducimus officia! Quia optio neque
odio.
</div>
<h3 class="title">Contact</h3>
<div class="container">
<form action="#">
<label for="name">First Name</label>
<input type="text" name="name" id="name" placeholder="Enter Your First Name">
<label for="name">Last Name</label>
<input type="text" name="name" id="name" placeholder="Enter Last Name">
<label for="country">country</label>
<select name="country" id="country">
<option value="india">India</option>
<option value="uk">UK</option>
<option value="usa">USA</option>
<option value="chine">China</option>
<option value="australia">Australia</option>
</select>
<label for="massage">Massage</label>
<textarea name="massage" id="massage" cols="30" rows="10"></textarea>
<input type="submit" value="Submit">
</form>
<div class="map">
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d237.8917407693775!2d78.3636052!3d17.4468894!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bcb93ff87b0afe1%3A0x251efb01aa3bdbeb!2sKnowledgeHut%20Solutions%20Private%20Limited!5e0!3m2!1sen!2sin!4v1671080004976!5m2!1sen!2sin"
width="100%" height="450" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
<blockquote class="quote">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Error, neque?</blockquote>
<div class="footer">
Copyright © Harsh Devlopment
</div>
</div>
</body>
</html>