-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.html
121 lines (75 loc) · 3.26 KB
/
contactus.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
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="hamburger.png">
<title>FoodRecipes App</title>
<link rel="stylesheet" type="text/css" href="mystyle4.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css">
<link href='https://fonts.googleapis.com/css?family=Croissant One' rel='stylesheet'>
</head>
<body>
<div class="bg-img">
<div class="header">
<div class="logo">FOOD RECIPES</div>
<p id="demo"></p>
<div class="menu">
<a href="index.html" class="link ">Meals</a>
<a href="cocktail.html" class="link ">cocktail</a>
<a href="beer.html" class="link ">Beer</a>
<a href="contactus.html" class="link ">Contact Us</a>
</div>
</div>
<div id='form'>
<div class="container2">
<form autocomplete="off">
<p id='para4'> Name<input type="text" name="firstname" placeholder="Your name.."><br>
E-mail<input type="text" name="lastname" placeholder="Your last name.."><br>
Subject <textarea name="subject" placeholder="Write something.." style="height:120px"></textarea></p>
<input type="submit" value="Submit" class='block'>
</form>
</div>
</div>
<div class = 'container3'>
<h1 id="coh1" style="color:white;text-align: center;">Get In Touch!</h1>
<iframe src="https://www.google.com/maps/embed/v1/place?key=AIzaSyA0s1a7phLN0iaD6-UE7m4qP-z21pH0eSc&q=Chandigarh-Patiala,National Highway (NH- 64), Village, Jansla, Rajpura, Punjab 140401" frameborder="0" style="border:0;width: 600px" allowfullscreen></iframe>
<table>
<tr>
<td>
<div id='info'>
<a href="https://vsachdeva1998.github.io/resume/"><img src="resume.png"></a><br><p style="font-size:22px">Vinay<br><br>Vinay@gmail.com<br><br>+91 7647596970</p>
</div>
</td>
<td>
<div id='info'>
</div>
</td>
<td>
<div id='info'>
<a href="https://harman20.github.io/resume/"><img src="resume.png"></a><br><p style="font-size:22px">Harmanjit Singh<br><br>harmanjitsingh66@gmail.com<br><br>+91 9041127782</p>
</div>
</td>
</tr>
</table>
</div>
</div>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<div class="foot_bottom">
<div class="cpy-right">
<h2 class="glow">Follow us on</h2>
<ul class="sinfo">
<li><a href="https://vidooly.com/blog/world-food-video-pages-on-facebook/"><span class="fab fa-facebook-f"></span></a></li>
<li><a href="https://twitter.com/twitterfood"><span class="fab fa-twitter"></span></a></li>
<li><a href="https://www.esquire.com/food-drink/drinks/"><span class="fab fa-google"></span></a></li>
<li><a href="https://www.instagram.com/thebestdrinkever/?hl=en"><span class="fab fa-instagram"></span></a></li>
<li><a href="https://github.com/topics/food-ordering"><span class="fab fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/company/the-food-channel-official-page-/?originalSubdomain=in"><span class="fab fa-linkedin"></span></a></li>
</ul>
</div>
</div>
<script type="text/javascript">
var d = new Date();
var n = d.toLocaleDateString();
document.getElementById("demo").innerHTML = n;
</script>
</body>
</html>