-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
46 lines (45 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Android4Lumia950</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1>Android4Lumia950</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="downloads.html">Downloads</a></li>
<li><a href="what-works.html">What Works</a></li>
<li><a href="about.html" class="active">About Us</a></li>
<li><a href="sources.html">Sources</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<section id="about">
<h2>About Us</h2>
<p>Android4Lumia950 is a community-driven project aimed at bringing Android to the Lumia 950 devices.
Our goal is to breathe life into your old Lumia, making it useful again.</p>
<h3>Contributors</h3>
<ul class="contributors-list">
<li>sonic011gamer</li>
<li>ItzzJuliann</li>
<li>Eclypse</li>
<li>w1zzyl</li>
<li>Empyreal96</li>
</ul>
</section>
</main>
<footer>
<p>© 2024 Android4Lumia950</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>