-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathgitcard.html
103 lines (93 loc) · 4.89 KB
/
gitcard.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
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Git/STILLLEARN</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="JavaScriptCard.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100; 0,30
0;0,400;0,500;0, 600;0, 700; 1,100; 1, 200; 1,300; 1,400; 1,500; 1,600; 1,700&family=Montserrat:
wght@700; 800; 900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
</head>
<body>
<div class="hero">
<nav>
<h2 class="logo"><span>Git/STILLLEARN</span></h2>
<ul>
<li><a href="index.html" class="animated">Home</a></li>
<li><a href="about.html" class="animated">About</a></li>
<li><a href="contact.html" class="animated">Contact</a></li>
</ul>
</nav>
</div>
<div class="content1">
<div class="embed-container" style="width: 92%; background-color: grey;">
<iframe width="942" height="530" src="https://www.youtube.com/embed/8JJ101D3knE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<header>
<h1>Git Learning Page</h1>
</header>
<main>
<section>
<h2>Introduction to Git</h2>
<p>
Git is a popular version control system. It was created by Linus Torvalds in 2005, and has been maintained by Junio Hamano since then.It is used for:- Tracking code changes,Tracking who made changes and Coding collaboration
</p>
</section>
<section>
<h2>Getting Started with Git</h2>
<p> You can download Git for free from the following website: <a href="https://www.git-scm.com/"> here.
</a> To start using Git, we are first going to open up our Command shell.
For Windows, you can use Git bash, which comes included in Git for Windows. For Mac and Linux you can use the built-in terminal.
The first thing we need to do, is to check if Git is properly installed:
<b>Run git --version</b> If Git is installed, it should show something like git version X.Y
</p>
</section>
<section>
<h2>Resources for Learning Git</h2>
<ul>
<li><a href="https://www.codecademy.com/learn/learn-git" target="_blank">Introduction to Git and Github by Codecademy</a></li>
<li><a href="https://www.udemy.com/course/git-expert-4-hours/" target="_blank">Git Course by Udemy</a></li>
<li><a href="https://www.coursera.org/learn/introduction-git-github?utm_source=gg&utm_medium=sem&utm_campaign=B2C_INDIA__Google_FTCOF_googlecerts_arte_PMax_Addtocart&utm_content=Degree&campaignid=19768196284&adgroupid=&device=c&keyword=&matchtype=&network=x&devicemodel=&adpostion=&creativeid=&hide_mobile_promo&gclid=CjwKCAjw0ZiiBhBKEiwA4PT9zyRFmsdp0KiBvvtS8HRXgqlgc3koTckjfhr6Xkyxa4ZYfwQJUG1LKxoClY4QAvD_BwE" target="_blank">Git by Coursera</a></li>
</ul>
</section>
</main>
</div>
<footer>
<div class="footer-container" style="margin-left: 350px">
<div class="footer-row">
<div class="footer-col">
<ul>
<li><a href="https://www.instagram.com/iamayushshandilya/" target="_blank">
<h1><i class="fa-brands fa-instagram fab"></i></h1>
</a></li>
</ul>
</div>
<div class="footer-col">
<ul>
<li><a href="https://github.com/ayush-Shandilya" target="_blank">
<h1><i class="fa-brands fa-github fab"></i></h1>
</a></li>
</ul>
</div>
<div class="footer-col">
<ul>
<li><a href="https://www.linkedin.com/in/ayush-shandilya-220610253/" target="_blank">
<h1><i class="fa-brands fa-linkedin fab"></i></h1>
</a></li>
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>