-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
114 lines (108 loc) · 3.79 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="/css/index.css">
<link rel="stylesheet" href="css/contactus.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<header>
<ul>
<li>
<img src="./source/hlogo-removebg-preview.png" alt="">
</li>
<li>
<a href="/index.html">Home</a>
</li>
<li>
<a href="/aboutus.html">About Us</a>
</li>
<li>
<a href="/news.html">News</a>
</li>
<li>
<a href="/blog.html">Blog</a>
</li>
<li>
<a href="/services.html">Services</a>
</li>
<li>
<a href="/contact.html">Contact Us</a>
</li>
</ul>
</header>
<hr>
<div class="main">
<div class="title">
<h1>Contact Us</h1>
</div>
<div class="container mt-4">
<form>
<div class="form-group">
<label for="name">Your Name:</label>
<input type="text" class="form-control" id="name" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label for="number">Your Number:</label>
<input type="number" class="form-control" id="email" placeholder="Enter your contact number" required>
</div>
<div class="form-group">
<label for="email">Your Email:</label>
<input type="email" class="form-control" id="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="message">Your Message:</label>
<textarea class="form-control" id="message" rows="5" placeholder="Type your message here" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
<div class="bottom">
<div class="logo">
<img src="./source/hlogo-removebg-preview.png" alt="">
</div>
<div class="pages">
<h2>Pages</h2>
<ul>
<li>
<a href="/index.html">Home</a>
</li>
<li>
<a href="/aboutus.html">About Us</a>
</li>
<li>
<a href="/news.html">News</a>
</li>
<li>
<a href="/blog.html">Blog</a>
</li>
<li>
<a href="/services.html">Services</a>
</li>
<li>
<a href="/contact.html">Contact Us</a>
</li>
</ul>
</div>
<div></div>
<div>
<h2>Get in touch</h2>
<p>Email: shuklasanskrit70@gmail.com</p>
<p>Phone: +91 9718752322</p>
<p>Address: 231,Faridabad,Haryana</p>
</div>
</div>
<footer>
<div class="footer">
© 2021 Sanskriti shukla. All rights reserved.<br />
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.0.8/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>