-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (41 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>What is Git?</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Page Header -->
<header>
<h1>****ABOUT GIT*****</h1>
<p>Learn about Git, its uses, and the concept of branches.</p>
</header>
<!-- Articles Section -->
<section class="articles">
<!-- Article 1 - First-child styled differently -->
<article>
<h2>What is Git?</h2>
<p>Git is a version control system that helps track changes to files and enables collaboration.</p>
<a href="#">Read More</a>
</article>
<!-- Article 2 -->
<article>
<h2>Why do Developers Need Git?</h2>
<p>Git helps developers manage code versions, collaborate on projects, and track changes efficiently.</p>
<a href="#">Read More</a>
</article>
<!-- Article 3 -->
<article>
<h2>What is a Branch in Git?</h2>
<p>A branch in Git is a pointer to a commit, allowing parallel development.</p>
<a href="#">Read More</a>
</article>
</section>
<!-- Footer -->
<footer>
<p> *created by Amir Aminian*</p>
</footer>
</body>
</html>