-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.html
105 lines (104 loc) · 5.21 KB
/
contacts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>interior</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat:100,300,400,700" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="header-block">
<div class="header">
<a href="index.html"><img src="img/logo.svg" alt="logo"></a>
<ul class="menu clearfix">
<li class="menu-list"><a href="index.html" class="menu-link ">Home</a></li>
<li class="menu-list"><a href="products.html" class="menu-link">Products</a></li>
<li class="menu-list"><a href="#" class="menu-link">History</a></li>
<li class="menu-list"><a href="#" class="menu-link">Showroom</a></li>
<li class="menu-list"><a href="#" class="menu-link menu-link-active">Contact</a></li>
<li class="menu-list"><a href="#" class="menu-link"><img src="img/search.svg" alt="search"></a></li>
</ul>
</div>
<h1>Contact Us</h1>
</div>
<!-- CONTACTS-->
<div class="contacts">
<ul class="contacts-ul">
<li class="contacts-list">
<div class="contacts-text">
<img src="img/location.png" alt="location">
<h2>California</h2>
<p>Phone:<br><span class="black">1900 - 1234 -5678</span></p>
<p>Email:<br><span class="black">[email protected]</span></p>
<p>Address:<br><span class="light">12 W 1st St, 90001 Los Angeles, California</span></p>
</div>
</li>
<li class="contacts-list">
<div class="contacts-text">
<img src="img/location.png" alt="location">
<h2>California</h2>
<p>Phone:<br><span class="black">1900 - 1234 -5678</span></p>
<p>Email:<br><span class="black">[email protected]</span></p>
<p>Address:<br><span class="light">12 W 1st St, 90001 Los Angeles, California</span></p>
</div>
</li>
<li class="contacts-list">
<div class="contacts-text">
<img src="img/location.png" alt="location">
<h2>California</h2>
<p>Phone:<br><span class="black">1900 - 1234 -5678</span></p>
<p>Email:<br><span class="black">[email protected]</span></p>
<p>Address:<br><span class="light">12 W 1st St, 90001 Los Angeles, California</span></p>
</div>
</li>
</ul>
</div>
<!-- FOOTER -->
<div class="footer">
<div class="top-fotter">
<div class="contact-us">
<h4>Contact Us</h4>
<p>132A Bridge Road Richmond VIC<br>Australia.<br></p>
<p>Talk to us on 1300 132<br>[email protected]</p>
</div>
<div class="useful-information">
<h4>Useful Information</h4>
<div class="useful-information-left">
<a href="#"><h5>Sales terms</h5></a>
<a href="#"><h5> Customer care</h5></a>
<a href="#"><h5>Delivery</h5></a>
</div>
<div class="useful-information-right">
<a href="#"><h5>Architect accounts</h5></a>
<a href="#"><h5>Careers</h5></a>
<a href="#"><h5>Exchanges & returns</h5></a>
</div>
</div>
<div class="lets-stay-in-touch">
<h4>Let’s Stay in Touch!</h4>
<p>Suscribe to know about our latest news, products and special offers just for suscribers.</p>
<form>
<input type="email" name="email" value="your email address">
<button class="button1" name="submit"><img src="img/submit.png" alt="submit"></button>
</form>
</div>
</div>
<div class="buttom-fotter">
<p>© Copyright - INTERIOR 2016. All Rights Reserved.</p>
<ul>
<li class="social-list"><a href="#" target="_blank"><img class="social-icon" src="img/fb.png"
alt="facebook"></a></li>
<li class="social-list"><a href="#" target="_blank"><img class="social-icon" src="img/twitter.png"
alt="twitter"></a></li>
<li class="social-list"><a href="#" target="_blank"><img class="social-icon" src="img/google.png"
alt="google"></a></li>
<li class="social-list"><a href="#" target="_blank"><img class="social-icon" src="img/pinterest.png"
alt="pinterest"></a></li>
</ul>
<a href="#"><h6>Terms & Conditions / Privacy policy & Cookies</h6></a>
</div>
</div>
</div>
</body>
</html>