-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder.html
More file actions
77 lines (68 loc) · 1.8 KB
/
order.html
File metadata and controls
77 lines (68 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>orderpage</title>
<script src="https://use.fontawesome.com/35be55a773.js"></script>
<style>
body{
background-color: #131111;
background-image: url(/image/bgd2.jpg);
background-repeat: no-repeat;
background-size: cover;
filter: brightness(0.4rem);
}
a {
text-decoration: none;
}
.fa {
font-size: 1.2em;
line-height: 2em;
background: white;
border-radius: 2em;
height: 2em;
width: 2em;
display: inline-block;
position: absolute;
top: 8px;
left: 10px;
text-align: center;
color: #C43832;
}
.phone-number {
font-weight: bold;
font-size: 20px;
text-align: right;
text-transform: uppercase;
font-weight: bold;
background: #C43832;
border-radius: 34px;
padding: 1em;
position: relative;
padding-left: 3.5em;
color: white;
display: inline-block;
width: 135px;
}
.phone-number--below {
display: block;
text-align: left;
padding-left: 3.5em;
}
.phone-number:hover {
background: #1d71b8;
}</style>
</head>
<body><br><br>
<center> <a href="contact.html">
<div class="phone-number phone-number--below">
<i class="fa fa-phone" aria-hidden="true"></i> Order Now</span>
</div></a><br><br><br>
<a href="product.html"><div class="phone-number phone-number--below">
<i class="fa fa-bars" aria-hidden="true"></i> PRODUCTS</span>
</div></a>
</center>
<div><h1 style="font-size: 90px; text-align: center;" > COMING SOON !</h1></div>
</body>
</html>