-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactUs.html
More file actions
118 lines (105 loc) · 4.5 KB
/
ContactUs.html
File metadata and controls
118 lines (105 loc) · 4.5 KB
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
<!DOCTYPE html>
<html lang="en">
<div class="header">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All Products 2 - OneStopSkateShop</title>
<link rel="stylesheet" href="main.css">
<link href="https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="navbar">
<div class="logo">
<a href="index.html"><img src="Images\logo.png" width="150px" height="80px"></a>
</div>
<div class="search-container">
<form action="/action_page.php">
<input type="text" placeholder="Search..">
<button type="submit"><i class="fa fa-search"></i></button>
</form>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Products.html">Products</a></li>
<li><a href="About Us page.html">About Us</a></li>
<li><a href="Account.html">Account</a></li>
<li><a href="Contact Us.html">Contact Us</a></li>
</ul id="MenuItems">
<a href="Shopping cart.html"><img src="Images\cart.png" width="30px" height="32px"></a>
<img src="Images\menu.png" class="menu-icon" onclick="menutoggle()">
</nav>
</div>
</div>
<hr>
</div>
<div class="contact-title">
<h1>Welcome To Our Contact Center</h1>
<h2>We Are Always Ready For Your Contact!</h2>
</div>
<div class="contact-form">
<form-2 id="contact-form" method="post" action="">
<input-2 name="name" type="text" class="form-control" placeholder="Your Name" required><br>
<input-2 name="email" type="email" class="form-control" placeholder="Your Email" required><br>
<textarea name="massage" class="form-control" placeholder=" Message" row="4" required></textarea><br>
<input-2 type="submit" class="form-control submit" value="SEND MASSAGE">
</form-2>
</div>
<!---- Footer ---->
<div class="footer">
<hr>
<div class="container">
<div class="row">
<div class="footer-col-1">
<h3>Download Our App</h3>
<p>Download App for Android and ios mobile phone</p>
<div class="app-logo">
<img src="Images\gplay.png">
<img src="Images\app store.png">
</div>
</div>
<div class="footer-col-2">
<h3><a href ="index.html"><img src="Images\logo.png"></a></h3>
<p>Our key goal is to provide quality products for our customers</p>
</div>
<div class="footer-col-4">
<h3>Follow Us</h3>
<ul>
<li><a href="www.facebook.com"><i class="fa fa-facebook-official" aria-hidden="true"></i> Facebook</a></li>
<br>
<li><a href="www.Twitter.com"><i class="fa fa-twitter" aria-hidden="true"></i> Twitter</a></li>
<br>
<li><a href="www.instagram.com"><i class="fa fa-instagram" aria-hidden="true"></i> Instagram</a></li>
<br>
<li><a href="www.youtube.com"><i class="fa fa-youtube" aria-hidden="true"></i> YouTube</a></li>
<br>
</ul>
</div>
</div>
</div>
<hr>
<br>
<p class="copyright">@Copyright 2020 - OneStopSkateShop</p>
</div>
<!--- JavaScript used for toggle menu --->
<script>
var MenuItems = document.getElementById("MenuItems");
MenuItems.style.maxHeight = "0px";
function menutoggle(){
if(MenuItems.style.maxHeight == "0px")
{
MenuItems.style.maxHeight == "200px"
}
else
{
MenuItems.style.maxHeight = "0px"
}
}
</script>
</body>
</html>