-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
97 lines (92 loc) · 2.26 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ALX Student's Contribution</title>
<style>
header {
background-color: #1C1C1C;
color: #FFF;
padding: 20px;
position: sticky;
top: 0;
}
header h1 {
font-size: 36px;
margin: 0;
}
header nav {
display: flex;
justify-content: flex-end;
margin-top: 20px;
}
header nav ul {
list-style: none;
margin: 0;
padding: 0;
}
header nav li {
margin-left: 20px;
}
header nav a {
color: #FFF;
text-decoration: none;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
transition: all 0.2s ease-in-out;
}
header nav a:hover {
color: #BB86FC;
}
</style>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>ALX Student's Contribution</h1>
<nav>
<ul>
<li><a href="#projects">Projects</a></li>
<li><a href="#contribution-guidelines">Contribution Guidelines</a></li>
<li><a href="#about-us">About Us</a></li>
</ul>
</nav>
</header>
<main>
<section id="hero">
<h2>Welcome to our Community</h2>
<p>Join our growing community of developers, designers, writers, reviewers, and contributors from all over the world. Explore our past and present projects and become a part of our journey towards excellence.</p>
<a href="#contribution-guidelines" class="btn">Get Started</a>
</section>
<section id="projects">
<h2>Our Projects</h2>
<p>Explore our past and present projects:</p>
<ul>
<li><a href="#">Project 1</a></li>
<li><a href="#">Project 2</a></li>
<li><a href="#">Project 3</a></li>
</ul>
</section>
<section id="contribution-guidelines">
<h2>Contribution Guidelines</h2>
<p>Learn how to contribute to our projects:</p>
<ul>
<li><a href="#">How to Contribute</a></li>
<li><a href="#">Code of Conduct</a></li>
<li><a href="#">Contributor License Agreement</a></li>
</ul>
</section>
<section id="about-us">
<h2>About Us</h2>
<p>Learn more about our community:</p>
<ul>
<li><a href="#">Our Team</a></li>
<li><a href="#">Our Vision</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</section>
</main>
<footer>
<p>