-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
146 lines (144 loc) · 5.15 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
<!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 rel="stylesheet" href="assets/styles/all.css" />
<link rel="stylesheet" href="assets/styles/mobile-styles.css" />
<link rel="stylesheet" href="assets/styles/desktop-styles.css" />
<title>About Us</title>
</head>
<body>
<header>
<nav class="navbar-top">
<div class="flex-container">
<ul>
<li>
<i class="fab fa-facebook-f"></i>
</li>
<li>
<i class="fab fa-twitter"></i>
</li>
<li>
<a href="#">Logout</a>
</li>
<li>
<a href="#">Mypage</a>
</li>
<li>
<a href="#">English</a>
</li>
</ul>
</div>
</nav>
<nav class="navbar-main">
<div class="flex-container">
<button class="navbar-main__toggler" type="button">
<i class="fas fa-bars"></i>
</button>
<div class="navbar-main__nav">
<button class="navbar-button__close">x</button>
<a class="navbar-main__brand" href="index.html"
><img
src="assets/images/air-sports-logo-1.png"
alt="Air Sports Logo"
/></a>
<ul class="navbar-main__list">
<li><a class="navbar-main__link" href="index.html">Home</a></li>
<li>
<a class="navbar-main__link" href="#">Safety Rules</a>
</li>
<li>
<a class="navbar-main__link" href="#features">Activities</a>
</li>
<li>
<a class="navbar-main__link" href="#staff">Our Instructors</a>
</li>
<li><a class="navbar-main__link" href="#">FAQ</a></li>
</ul>
<button id="cc-campaign" type="button">Book Now!</button>
<div class="menu-end">
<hr />
</div>
</div>
</div>
</nav>
</header>
<section id="about-hero">
<div class="flex-container">
<h2>"Hello Aspiring Thrillers!"</h2>
<h1>About Air Sports Club</h1>
<div class="about-hero__message">
<p>
At Air Sports Club, we specialize in small group for multiple air
sport adventures. Over the past 28 years, Air Sports Club has grown
rapidly to become one of the leading sport club like adventure
companies. We Provide Instructors to help you do the air actively
and explore the adventure of Skydiving, Paragliding,
Paramotoring,Hang Gliding, Wingsuit Flying and more. We always dig
deeper in our new destinations to keep evolving our new locations or
spot with the core intention of keeping your experiences truly
original and the memories priceless. When you are doing this
activities, you just feel more Thrilled. When you see more
activities, you meet more people, create more lasting memories...
When you trust in our expertise to deliver you these extraordinary
experiences, it truly means the world to us.
</p>
</div>
<h4 class="about-hero__contact">
Please contact us on the email below for any further queries <br />
about our services.
</h4>
<a class="about-hero__email" href="#Contact"
>
</div>
</section>
<section id="about-logo">
<div class="flex-container">
<h2>Air Sports Club Logo</h2>
<hr class="section__hr" />
<p>
The Air Sports Club logo was decided after a logo design competition
from 5th of June to 7th of July during the company logo contest, even
the friends of the Instructors took part and had great fun in the logo
contest.
</p>
<div class="about-logo__show">
<img
src="assets/images/air-sports-logo-1.png"
alt="Air Sports Club"
/>
</div>
</div>
</section>
<section id="about-past">
<div class="flex-container">
<h2>Recent Sports Events</h2>
<hr class="section__hr" />
<p>
Take a look at the last two Sports Events which took place in Jan 2021
and Feb 2021
</p>
<div class="about-past__grid">
<article class="about-past__cards card1">
<h3>Jan 2019</h3>
<p>Events in Uttah</p>
</article>
<article class="about-past__cards card2">
<h3>Feb 2019</h3>
<p>Events in Brazil</p>
</article>
</div>
</div>
</section>
<footer id="footer">
<div class="flex-container">
<img src="assets/images/air-sports-logo-1.png" alt="Air Sports Logo" />
<p>Copyright ©️ 2022 Air Sports Club. Some Rights Reserved</p>
</div>
</footer>
<script src="assets/about.js"></script>
</body>
</html>