-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
155 lines (148 loc) · 5.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css2?family=Lato&display=swap"
rel="stylesheet"
/>
<link href="http://fonts.cdnfonts.com/css/cocogoose" rel="stylesheet" />
<link rel="stylesheet" href="./styles/styles.css" />
<link rel="stylesheet" href="./styles/mobile.css" />
<link rel="stylesheet" href="./styles/desktop.css" />
<link rel="stylesheet" href="./styles/about.css" />
<script src="./js/index.js" defer></script>
<title>Senior Oboima</title>
</head>
<body>
<div>
<img class="background" src="./images/wallpaper.png" alt="backgroundImg" />
</div>
<header class="header-section">
<div class="top-nav">
<ul>
<li>
<a href="#"
><img
class="top-nav-icon"
src="./images/facebook.png"
alt="social network"
/></a>
</li>
<li>
<a href="#"
><img
class="top-nav-icon"
src="./images/twitter.png"
alt="social network"
/></a>
</li>
<li>
<a href="#"
><img
class="top-nav-icon"
src="./images/instagram.png"
alt="social network"
/></a>
</li>
<li>
<a class="top-nav-icon text-danger text-decoration-none" href="#"
>English</a
>
</li>
</ul>
</div>
<nav class="navbar nav-section">
<img
class="hamburger no-display"
src="./images/hamburger.png"
alt="hamburger"
/>
<img
src="./images/close.png"
alt="hamburger close"
class="no-display in-front hamburger1"
/>
<a href="/index.html">
<img class="nav-logo" src="./images/sbLogo.svg" alt="navLogo" />
</a>
<ul class="nav-item">
<li class="nav-link"><a href="./index.html">Home</a></li>
<li class="nav-link"><a href="./about.html">About</a></li>
<li class="nav-link"><a href="#">Bookings</a></li>
<li class="nav-link"><a href="#">Sponsors</a></li>
<li class="nav-link"><a href="#">Trends</a></li>
<li class="nav-link nav-gallery">Gallery</li>
</ul>
</nav>
</header>
<nav class="navbar nav-mobile disappearing-nav1">
<!-- Mobile Menu -->
<div class="hamburger">
<div id="myHamburger" class="ham-container hamburger">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
<div id="myDropdown" class="dropdown-content">
<a href="./index.html" class="nav-link">Home</a>
<a href="./about.html" class="nav-link">About</a>
<a href="#Bookings" class="nav-link">Bookings</a>
<a href="#Sponsor" class="nav-link">Sponsor</a>
<a href="#Trends" class="nav-link">Trends</a>
<a href="#Gallery" class="nav-link">Gallery</a>
</div>
</div>
</nav>
<section class="about-home">
<div class="about-home-section">
<h1 class="about-home-description1">"Be-Spoke Services!!!"</h1>
<p class="about-home-description">
Welcome to Senior Obioma's World Where we offer be-spoke services
and<br />
bring imaginary thoughts to reality. We also train, as well as events
holdings in a grandeur.
</p>
</div>
<div class="about-home-paragraph">
A fun festival where people from more than 80 countries who believe in t
he value of sharing and openness and create positive change gather and
share ideas will be held in Korea in October.
</div>
</section>
<section class="about-section">
<div class="about">
<h2>@Senior<br />Obioma</h2>
<hr/>
<div class="about-paragraph">
A fun festival where people from more than 80 countries who believe in t
he value of sharing and openness and create positive change gather and
share ideas will be held in Korea in October.
</div>
<div>
<img class="about-img" src="./images/sbLogo.svg" alt="aboutUs logo" />
</div>
</div>
</section>
<footer>
<div class="footer-section">
<img class="footer" src="./images/sbLogo.svg" alt="footer Logo" />
<h2 class="footer">
Senior<br />
Obioma
</h2>
<p class="footer text-muted mt-5">
2022 Senior Obioma Nigeria. Some rights reserved.
</p>
</div>
</footer>
</body>
</html>