-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
112 lines (95 loc) · 3.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<meta content="ie=edge" http-equiv="X-UA-Compatible" />
<title>Ololufe Kenya | Contact</title>
<!-- Fonts -->
<!-- Anek Telugu -->
<link href="https://fonts.googleapis.com/css2?family=Anek+Telugu:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Ms Madi -->
<link href="https://fonts.googleapis.com/css2?family=Ms+Madi&display=swap" rel="stylesheet">
<!-- AOS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css">
<!-- Stylesheets -->
<!-- Normalize CSS -->
<link rel="stylesheet" href="./assets/vendors/css/normalize.css">
<!-- Grid CSS -->
<link rel="stylesheet" href="./assets/vendors/css/grid.css">
<!-- MainCSS -->
<link rel="stylesheet" href="./assets/css/style.css">
<!-- ContactCSS -->
<link rel="stylesheet" href="./assets/css/contact.css">
</head>
<body>
<!-- Header+Navigation -->
<header id="contact__header__section">
<nav>
<div id="logo">
<a href="index.html">
<!-- <img src="#" alt="Logo Image"> -->
<p>Ololufe Kenya</p>
</a>
</div>
<ul class="nav__links">
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./gallery.html">Gallery</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
</header>
<!-- ContactInfoSection -->
<section class="contact__section">
<div class="row">
<p class="white">Contact us for your:</p>
<p>Weddings, Birthdays, Anniversaries, Products, etc.</p>
</div>
<div class="row">
<p class="white mail">info@johnmuturi.com</p>
<p class="white cell">(+254) 712 345 678</p>
</div>
<div class="row">
<p>Nairobi, Kenya</p>
</div>
</section>
<!-- Footer -->
<section class="footer">
<div class="row">
<!-- Address -->
<div class="col span-1-of-3">
<p>Ololufe Photography</p>
<p>Nairobi, Kenya</p>
</div>
<!-- Contacts -->
<div class="col span-1-of-3">
<p>Contact us</p>
<p class="contacts socials">(+254) 712 345 678</p>
<p class="contacts socials">info@johnmuturi.com</p>
</div>
<!-- Socials -->
<div class="col span-1-of-3">
<p>Follow us</p>
<p class="socials"><a href="https://twitter.com" target="_blank">Twitter</a></p>
<p class="socials"><a href="https://instagram.com" target="_blank">Instagram</a></p>
</div>
</div>
</section>
<!-- Scripts -->
<!-- Main JS -->
<script src="./assets/js/index.js"></script>
<!-- AOS -->
<script src="https://unpkg.com/aos@2.3.4/dist/aos.js"></script>
<script>
AOS.init({
offset: 400
});
</script>
</body>
</html>