-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
72 lines (59 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PROJECT 1</title>
<link rel="stylesheet" href="project1.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div id="nav-logo-tab-wrapper">
<div id="nav-logo-wrapper">
<div id="logo">
<a href="index.html"><img src="images/project 1 logo.png" alt="logo" class="logo"></a>
</div>
<div id="nav-tab" class=" ">
<div id="nav-tab-slide"></div>
</div>
</div>
<div id="nav-link-item">
<a href="index.html" class="nav-link-items">HOME</a>
<a href="work.html" class="nav-link-items">PORTFOLIO</a>
<a href="blog.html" class="nav-link-items">OUR BLOG</a>
<a href="#" class="nav-link-items">CONTACT US</a>
<a href="#" class="nav-link-items">+234 806 420 3109 </a>
</div>
</div>
</header>
<main>
<div id="contact-div-wrapper">
<h2>Contact Us</h2>
<div id="contact-map"></div>
<div id="contact-content">
<p>Address: Westminster House, Adeola Hopewell, Victoria Island,
Eti-osa 101241 Lagos</p>
<p>Phone: <span class="contact-span">+234(0)80-6420-3109</span></p>
<p>Email: <span class="contact-span">[email protected]</span> </p>
</div>
<form action="">
<input type="text" placeholder="To search, type and hit en"> <input type="submit">
</form>
</div>
</main>
<div id="footer-links">
<a href="#" class="footer-link">HOME</a>
<a href="#" class="footer-link">PORTFOLIO</a>
<a href="#" class="footer-link">OUR BLOG</a>
<a href="#" class="footer-link">CONTACT US</a>
<a href="#" class="footer-link">+234 806 420 3109</a>
</div>
<P>©2020 Decor.ng.</P>
<P>Remade in Lagos with <img src="images/2764.svg" alt="love" style="height: 15px; width: 15px;"> by Yemi.</P>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.3.4/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.3.4/ScrollTrigger.min.js"></script>
<script src="project1.js"></script>
</body>
</html>