-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
170 lines (161 loc) · 5.5 KB
/
about.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Meta Tags -->
<title>
Zakie Photography - Perfection Humters | Contact: 0752758013, 0782758013
</title>
<meta
name="description"
content="Zakie Photography offers professional photography and videography services in Uganda. Specializing in weddings, introductions, graduations, and more. Contact us at 0752758013 or 0782758013."
/>
<meta
name="keywords"
content="Zakie Photography, photography services, videography, weddings, graduations, birthdays, Uganda photographer"
/>
<meta name="robots" content="index, follow" />
<meta name="author" content="Zakie" />
<meta name="publisher" content="Zakie Photography" />
<link rel="canonical" href="https://yourwebsite.com" />
<!-- Open Graph (OG) Meta Tags for Social Media -->
<meta
property="og:title"
content="Zakie Photography - Perfection Humters | Contact: 0752758013, 0782758013"
/>
<meta
property="og:description"
content="Zakie Photography offers professional photography and videography services in Uganda. Specializing in weddings, introductions, graduations, and more. Contact us at 0752758013 or 0782758013."
/>
<meta
property="og:image"
content="https://yourwebsite.com/zakie-photography-og-image.jpg"
/>
<meta property="og:url" content="https://yourwebsite.com" />
<meta property="og:type" content="website" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Zakie Photography - Perfection Humters | Contact: 0752758013, 0782758013"
/>
<meta
name="twitter:description"
content="Zakie Photography offers professional photography and videography services in Uganda. Specializing in weddings, introductions, graduations, and more. Contact us at 0752758013 or 0782758013."
/>
<meta
name="twitter:image"
content="https://yourwebsite.com/zakie-photography-twitter-image.jpg"
/>
<!-- Sitemap -->
<link
rel="sitemap"
type="application/xml"
title="Sitemap"
href="sitemap.xml"
/>
<!-- Google Verification -->
<meta
name="google-site-verification"
content="your-google-verification-code"
/>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<link
href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css"
rel="stylesheet"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.1/flowbite.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.scss" />
</head>
<body>
<header>
<nav class="bg-white border-gray-200 dark:bg-gray-900">
<div
class="flex flex-wrap justify-between items-center mx-auto max-w-screen-xl p-4"
>
<a
href="index.html"
class="flex items-center space-x-3 rtl:space-x-reverse"
>
<img
src="./images/zakieimage4.jpg"
class="h-8"
alt="zakie-photography-Logo"
/>
<span
class="self-center text-2xl font-semibold whitespace-nowrap dark:text-white"
>zakie photography</span
>
</a>
<button class="darkmode-toggle dark:text-white">
<i class="bx bxs-moon"></i>
<!-- -->
</button>
</div>
</nav>
<nav class="bg-gray-50 dark:bg-gray-700">
<div class="max-w-screen-xl px-4 py-3 mx-auto">
<div class="flex items-center">
<ul
class="flex flex-row font-medium mt-0 space-x-8 rtl:space-x-reverse text-sm"
>
<li>
<a
href="index.html"
class="text-gray-900 dark:text-white hover:underline"
>Home</a
>
</li>
<li>
<a
href="gallery.html"
class="text-gray-900 dark:text-white hover:underline"
>Gallery</a
>
</li>
<li>
<a
href="FAQ.html"
class="text-gray-900 dark:text-white hover:underline"
>FAQ</a
>
</li>
<li>
<a
href="blog.html"
class="text-gray-900 dark:text-white hover:underline"
>Blog</a
>
</li>
<li>
<a
href="contact.html"
class="text-gray-900 dark:text-white hover:underline"
>Contact</a
>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div>
<a
href="contact.html"
class="bg-gray-700 hover:bg-gray-800 dark:bg-white dark:text-gray-900 focus:ring-4 focus:outline-none focus:ring-green-300 font-medium rounded-lg text-sm px-4 py-2 text-center bottom-5 fixed right-6 text-white"
>
Book Now
</a>
</div>
<script type="module" src="app.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.1/flowbite.min.js"></script>
<script>
AOS.init();
</script>
</body>
</html>