-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (47 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How GitHub Works</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>How GitHub Works</h1>
<nav>
<ul>
<li><a href="#overview">Overview</a></li>
<li><a href="#repositories">Repositories</a></li>
<li><a href="#collaboration">Collaboration</a></li>
<li><a href="#resources">Resources</a></li>
</ul>
</nav>
</header>
<section id="overview">
<h2>Overview</h2>
<p>GitHub is a platform for version control and collaboration. It lets you and others work together on projects from anywhere.</p>
<img src="https://octodex.github.com/images/NUX_Octodex.gif" alt="GitHub Octocat" class="responsive-img">
</section>
<section id="repositories">
<h2>Repositories</h2>
<p>Repositories are where your projects live. They can contain folders and files, images, videos, spreadsheets, and data sets – anything your project needs.</p>
</section>
<section id="collaboration">
<h2>Collaboration</h2>
<p>GitHub makes it easy to collaborate with others. You can use issues, pull requests, and project boards to track progress and stay organized.</p>
</section>
<section id="resources">
<h2>Resources</h2>
<p>Check out these resources to learn more about GitHub:</p>
<ul>
<li><a href="https://docs.github.com/en" target="_blank">GitHub Docs</a></li>
<li><a href="https://guides.github.com/" target="_blank">GitHub Guides</a></li>
</ul>
</section>
<footer>
<p>© 2024 My GitHub Page</p>
</footer>
<script src="script.js"></script>
</body>
</html>