-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcontact.html
104 lines (97 loc) · 3.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- Important to make website responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digital Diner</title>
<!-- Link our CSS file -->
<link rel="stylesheet" href="style/contact.css">
</head>
<body>
<!-- Navbar Section Starts Here -->
<section class="navbar">
<div class="container">
<div class="logo">
<a href="#" title="Logo">
<img src="images/logo.png" alt="Restaurant Logo" class="img-responsive">
</a>
</div>
<div class="menu text-right">
<ul>
<li>
<a href="mainpage.html">Home</a>
</li>
<li>
<a href="foods.html">Menu</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</section>
<!-- Navbar Section Ends Here -->
<!-- contact section starts here -->
<section class="contact-section">
<section class="contact">
<div class="Quries">
<h2> Send us a message </h2>
<p> If you have any types of quries related to my website, you can send me message from here. It's my pleasure to help you.
</p>
</div>
<div class="form" >
<form class="contact-form" action="1.html">
<input type="name" name="full-name" placeholder="Enter your name" required>
<input type="email" name="email" placeholder="Enter your email" required>
<textarea type="address" name="msg" placeholder="Enter your message" required></textarea><br>
<input class="submit-form" type="submit" name="submit" value="Send Now">
</form>
</div>
</section>
<section class="ourcontact">
<div class="address">
<h2> Address </h2>
<div class="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3890.369095755929!2d80.03710011378817!3d12.819409321670483!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a52f76c4db87a47%3A0x341fa471f8027d68!2sSRM%20University%2C%20Kattankulathur%2C%20Tamil%20Nadu%20603203!5e0!3m2!1sen!2sin!4v1639571580383!5m2!1sen!2sin" width=200px height=150px></iframe>
</div>
</div>
<div class="phone">
<h2> Phone </h2>
<p>+91 8919xxxxxx</p>
</div>
<div class="email">
<h2> Email </h2>
<p> [email protected] </p>
</div>
</section>
</section>
<hr>
<!-- social Section Starts Here -->
<section class="social">
<div class="container text-center">
<ul>
<li>
<a href="#"><img src="https://img.icons8.com/fluent/50/000000/facebook-new.png"/></a>
</li>
<li>
<a href="#"><img src="https://img.icons8.com/fluent/48/000000/instagram-new.png"/></a>
</li>
<li>
<a href="#"><img src="https://img.icons8.com/fluent/48/000000/twitter.png"/></a>
</li>
</ul>
</div>
</section>
<!-- social Section Ends Here -->
<!-- footer Section Starts Here -->
<section class="footer">
<div class="container text-center">
<p style="color: white; width:100%">copyright © 2022. All rights reserved by <a href="#">Swarup</a></p>
</div>
</section>
<!-- footer Section Ends Here -->
</body>
</html>