-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (65 loc) · 3.1 KB
/
Copy pathindex.html
File metadata and controls
72 lines (65 loc) · 3.1 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Git & GitHub</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav class="py-3 navbar navbar-expand-lg auto-hiding-navbar navbar-light">
<div class="container">
<a class="navbar-brand py-0" href="#"><img src="Imgs/Git2.PNG" ></a>
<button class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#navbar-content" aria-controls="navbar-content" aria-expanded="false"
aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbar-content" >
<ul class="navbar-nav mr-auto">
</ul>
<form class="form-inline my-2 my-lg-0">
<ul class="navbar-nav mr-auto " >
<li class="nav-item active current">
<a class="nav-link" href="index.html"><h5>Home</h5> <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact us.html" ><h5>Contact Us</h5></a>
</li>
<li class="nav-item">
<a class="nav-link" href="GIT.html" ><h5>Git</h5></a>
</li>
<li class="nav-item">
<a class="nav-link" href="GitHub.html" ><h5>GitHub</h5></a>
</li>
</ul>
</form>
</div>
</nav>
<hr>
<br>
</div>
<div class="container">
<h3>Whats is Git?</h3>
<p>Git Bash is an application for Microsoft Windows environments which provides an emulation layer for a Git command line experience. Bash is an acronym for Bourne Again Shell. A shell is a terminal application used to interface with an operating system through written commands.</p>
<a href="https://git-scm.com/">a link to Git</a>
<hr>
<h3>Whats is GitHub?</h3>
<p>GitHub is a Git repository hosting service, but it adds many of its own features. While Git is a command line tool, GitHub provides a Web-based graphical interface. It also provides access control and several collaboration features, such as a wikis and basic task management tools for every project.</p>
<img src="Imgs/GITHUB.png" alt="Github" class="Github"><br>
<a href="https://github.com/">a link to GitHub</a>
</div>
<br>
<footer>
<nav class="navbar navbar-light" style="background-color: #e7731f;">
<span class="navbar-text " style="color: white;">
Git & GitHub For Beginner
</span>
</nav>
</footer>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>