-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
80 lines (76 loc) · 3.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="main.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="contactStyle.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous" />
</head>
<body>
<!-- navbar -->
<nav class="navbar">
<div class="navbar-center">
<span class="nav-icon">
<a href="index.html" ; style="color: rgb(53, 53, 53);"><i class="fas fa-bars"></i></a>
</span>
<img src="./images/logo.svg.jpeg" alt="store logo" />
</nav>
<!-- end of navbar -->
<section class="contact" style="margin-top: -10px;">
<div class="content">
<h2 style="margin-top: 100px;">Contact Us</h2>
</div>
<div class="container">
<div class="contactInfo">
<div class="box">
<div class="icon"><i class="fa fa-map-marker" aria-hidden="true"></i></div>
<div class="text>">
<h3 style="color: rgb(224, 171, 72); margin-left: 20px;"> Address</h3>
<p style="color: beige; margin-left: 20px;">Golden Shoe, London , WN1 3RM</p>
</div>
</div>
<div class="box">
<div class="icon"><i class="fa fa-phone" aria-hidden="true"></i></div>
<div class="text>">
<h3 style="color: rgb(224, 171, 72); margin-left: 20px;"> Customer Service (Phone)</h3>
<p style="color: beige; margin-left: 20px;">0141 743 7777</p>
</div>
</div>
<div class="box">
<div class="icon"><i class="fa fa-envelope" aria-hidden="true"></i></div>
<div class="text>">
<h3 style="color: rgb(224, 171, 72); margin-left: 20px;"> Email</h3>
<p style="color: beige; margin-left: 20px;">[email protected]</p>
</div>
</div>
</div>
<div class="contactForm">
<form>
<h2>Send Message</h2>
<div class="inputBox">
<input type="text" name="" required="required">
<span>Full Name</span>
</div>
<div class="inputBox">
<input type="text" name="" required="required">
<span>Email</span>
</div>
<div class="inputBox">
<textarea required="required"></textarea>
<span>Type your Message...</span>
</div>
<div class="inputBox">
<input type="submit" name="" value="Send">
</div>
</form>
</div>
</div>
</section>
</body>
</html>