-
Notifications
You must be signed in to change notification settings - Fork 2
/
contact.html
130 lines (108 loc) · 3.43 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="test3.png" type="image/gif">
<link rel="stylesheet" type="text/css" href="style.css"><link rel="stylesheet" href="Verzeo_WD_MajorProject_ContactUs.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css">
<link rel="stylesheet" href="sign up.css">
<title>Quick Food - Contact Us</title>
</head>
<style>
@media screen and (max-width: 700px) {
.footer a h1
{
width: 30%;
font-size: 18px;
margin-left: 12%;
}
.Sign-up{
margin-top: 840px;
position: relative;
}
}
</style>
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<body>
<div class="header" id="head">
<a href="home.html" ><img src="test3.png" title="Quick Food"></a>
<a ><h1>CONTACT US</h1></a>
</div>
</div>
<div class="sidebar">
<ul>
<div class="contents">
<li><a href="home.html">HOME</a></li>
<li><a href="services.html">SERVICES</a></li>
<li><a href="contact.html">CONTACT US</a></li>
<li><a href="about.html">ABOUT US</a></li>
<li><a href="cart.html" ><i class='fas fa-cart-plus'></i> Cart</a></li>
</div>
</ul>
</div>
<div class="Sign-up" style="margin-top: 370px; float: left;">
<div class="title">
<h1>Contact Us</h1>
</div>
<div class="form">
<div class="user-box">
<input type="text" lastname="" required="">
<label>User Name</label>
</div>
<div class="user-box">
<input type="tel" Phone="" required="">
<label>Phone Number</label>
</div>
<div class="user-box">
<input type="email" email="" required="">
<label>E-Mail</label>
</div>
<div class="user-box">
<input type="text" Message="" required="">
<label>Message</label>
</div>
<div class="btn">
<a>Submit
<i class="fas fa-arrow-right"></i></a>
</div>
<div class="social-icons">
<div class="facebook">
<i class="fab fa-facebook-f"></i>
</div>
<div class="twitter">
<i class="fab fa-twitter"></i>
</div>
<div class="google">
<i class="fab fa-google-plus-g"></i>
</div>
</div>
</div>
</div>
<div class="footer" style="top: 770px;">
<a href="home.html" ><img src="test3.png" title="Quick Food"></a>
<a ><h1>© 2021 Quick Food</h1></a>
<a href="" id="ic"><i class="fab fa-facebook-f"></i></a>
<a href="" id="ic"><i class="fab fa-twitter"></i></a>
<a href="" id="ic"><i class="fab fa-google-plus-g"></i></a>
</div>
<script>
//Get the button
var mybutton = document.getElementById("toTop");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {
document.getElementById("head").style.backgroundColor = "rgb(65, 62, 62)";
mybutton.style.display = "block";
} else {
document.getElementById("head").style.backgroundColor = "rgb(65, 62, 62,0)";
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>