forked from R0Y15/WeatherNow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
96 lines (85 loc) · 3.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About WeatherNow</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="./css/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./css/about-style.css" />
</head>
<body>
<div class="content">
<!-- Navbar -->
<nav class="navbar">
<a href="index.html">Home</a>
<a href="./contributors.html">Contributors</a>
<a href="#">About</a>
</nav>
<!-- About Us Section -->
<div class="about-section">
<h1>About WeatherNow</h1>
<div class="aboutmain">
<!-- mainaboutsection styled with an free image imported from lottie. -->
<div>
<script src="https://unpkg.com/@dotlottie/player-component@latest/dist/dotlottie-player.mjs"
type="module"></script>
<dotlottie-player src="https://lottie.host/3312bd84-ca61-4616-ba9f-88b626331bd5/b7kvvtUn90.json"
background="transparent" speed="1" style="width: 300px; height: 300px" loop
autoplay></dotlottie-player>
</div>
<div class="aboutmainp">
<p>
Welcome to WeatherNow, your go-to destination for real-time
weather information. We are passionate about providing you with
the most accurate and up-to-date weather data for any city around
the world.
</p>
</div>
</div>
<h2>Our Mission</h2>
<p>
Our mission is to make it easy for you to access essential weather
information, whether you're planning your day or traveling to a new
location. WeatherNow is designed to keep you informed about the
current weather conditions so you can make the right decisions.
</p>
<h2>Key Features</h2>
<ul>
<li>
<img src="./css/check.svg" alt="">
Instantly check the weather in any city.
</li>
<li>
<img src="./css/check.svg" alt="">
Get detailed information such as temperature, humidity, wind speed,
and more.
</li>
<li>
<img src="./css/check.svg" alt="">
View weather forecasts for the upcoming hours.
</li>
<li>
<img src="./css/check.svg" alt="">
Beautifully designed and easy to use.
</li>
</ul>
<h2>Contributors</h2>
<p>
WeatherNow is made possible by a team of dedicated contributors who
are passionate about weather data and technology. We couldn't do it
without their hard work and expertise.
<a href="./contributors.html">Learn more about our contributors here</a>
</p>
</div>
<!-- Footer -->
<div class="footer">
<p>
<span class="light-text">WeatherNow is a weather application that displays the weather of
any city.</span>
<br />
© Roy™ <span id="copyrightYear"></span>
</p>
</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>