-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
119 lines (111 loc) · 5.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--favicon-->
<link rel="icon" href="favicon.png" type="image/png">
<!--bootstrap framework-->
<link rel="stylesheet" href="css/frameworks/bootstrap.min.css">
<!--fasthelpers framework-->
<link rel="stylesheet" href="css/frameworks/fasthelpers.css">
<!--hover.css library-->
<link rel="stylesheet" href="css/libraries/hover.min.css">
<!--fontawosome library-->
<link rel="stylesheet" href="css/libraries/all.min.css">
<!--components-->
<link rel="stylesheet" href="css/components/components.css">
<!--media query-->
<link rel="stylesheet" href="css/media_query/media_query.css">
<!--google fonts "cairo"-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Cairo:wght@700&display=swap">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<title>Oily | Contact</title>
</head>
<body>
<!--Start Info-->
<div class="info py-2 border-bottom"></div>
<!--End Info-->
<!--Start Nav-->
<nav class="navbar navbar-expand-lg navbar-light container"></nav>
<!--End Nav-->
<!--Start Shopping Item-->
<div class="container relative shop-item-container">
<div class="shop-item">
<span class="orders dark-grey">0</span>
<i class="fas fa-shopping-cart cursor text-danger lead shop relative"></i>
</div>
</div>
<!--End Shopping Item-->
<!--Start Orders Box-->
<div class="orders-box bg-light z-index rounded shadow-lg">
<ul class="orders-list list-unstyled">
</ul>
</div>
<!--End Orders Box-->
<!--Start Header-->
<div class="header high-height relative" style="background: url('images/contact.jpg') no-repeat;">
<div class="overlay"></div>
<div class="middle-content z-index">
<h1 class="upper white-color text-center">Let's Talk!</h1>
</div>
</div>
<!--End Header-->
<!--Start Contact Part-->
<div class="contact section-padd">
<div class="container">
<h2 class="text-danger text-center">Customer Success Team</h2>
<p class="par text-center">At Oily, we value exceptional communication above all else! Every single one of our Customer Success agents has a sole goal of Making You Successful! That is why our dedicated support team works 24/7/365 to help you make your webmastering journey as smooth as possible!</p>
<div class="contact-form">
<form>
<div class="form-group">
<label for="name" class="dark-grey">Name</label>
<input type="text" class="form-control" id="name" placeholder="Your Name *" required>
</div>
<div class="form-group">
<label for="email" class="dark-grey">Email Address</label>
<input type="email" class="form-control" id="email" placeholder="Your Email *" required>
</div>
<div class="form-group">
<label for="message" class="dark-grey">Message</label>
<textarea class="form-control" id="message" rows="3" placeholder="Write your Message *" required style="resize: none;"></textarea>
</div>
<div class="form-group">
<input type="submit" class="btn btn-lg bg-danger white-color white-color-hvr transition border" value="Send"></input>
</div>
</form>
</div>
</div>
</div>
<!--End Contact Part-->
<!--Start Footer-->
<footer class="footer bg-dark"></footer>
<!--End Footer-->
<!-- jQuery Library-->
<script src="js/libraries/jquery.min.js"></script>
<!--Bootstrap Framework -->
<script src="js/frameworks/bootstrap.min.js"></script>
<!--Nice Scroll Plugin-->
<script src="js/plugins/nicescroll.min.js"></script>
<script>
//Trigger Nice Scroll
$('body').niceScroll({
cursorcolor: "#e63946", //default theme color
cursorwidth: '14px',
zindex: 999,
horizrailenabled:false
});
</script>
<!--Js Files-->
<!--products-->
<script src="js/pages/products.js"></script>
<!--components-->
<script src="js/components/components.js"></script>
</body>
</html>