forked from DanishAbdullahPy/Html-for-freshmans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 924 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacktoberfest Beginner's Contributions</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to Hacktoberfest</h1>
<p>Beginner's Contributions</p>
</header>
<main>
<section>
<h2>Your Name</h2>
<p>Contributions:</p>
<ul>
<li><a href="link-to-contribution-1">Contribution 1</a></li>
<li><a href="link-to-contribution-2">Contribution 2</a></li>
<!-- Add more contributions as needed -->
</ul>
</section>
<!-- Add more sections for other contributors -->
</main>
<footer>
<p>Join us in celebrating Hacktoberfest and the power of open source!</p>
</footer>
</body>
</html>