-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (73 loc) · 3.45 KB
/
index.html
File metadata and controls
76 lines (73 loc) · 3.45 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
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>Git Help</title>
<!-- links -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/help_index.css">
<!-- Wish -->
<script>
type="text/javascript">
document.write("<center><font size=+3 style='color: Blue;'>");
var day = new Date();
var hr = day.getHours();
if (hr >= 0 && hr < 12) {
document.write("Good Morning!");
} else if (hr == 12) {
document.write("Good Noon!");
} else if (hr >= 12 && hr <= 16) {
document.write("Good Afternoon!");
}else if (hr >= 16 && hr <= 19) {
document.write("Good Evening!");
}else {
document.write("Coding Hours start!");
}
document.write("</font></center>");
</script>
</head>
<body>
<!-- Nav Bar -->
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="index.html">Main Menu</a>
<a href="create_Git_Acc.html">Create Github Account</a>
<a href="Downlodgithub.html">Git for PC</a>
<a href="create_repo.html">Repository</a>
<a href="fork.html">Fork</a>
<a href="Clone.html">Clone</a>
<a href="Push.html">Push</a>
</div>
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰ open</span>
<script>
function openNav() { document.getElementById("mySidenav").style.width = "250px";}
function closeNav() { document.getElementById("mySidenav").style.width = "0";}
</script>
<!-- Content -->
<div class="container">
<div class="jumbotron">
<h1>About GitHub</h1>
<div ><img src="assets/img/github-logo.png" id="icon" >
<h5><br>GitHub is a code hosting platform for collaboration and version control.<br>
GitHub lets you and others work together on projects. <br>
<a href="https://en.wikipedia.org/wiki/GitHub" target="_blank">Want to know more</a>
</h5>
</div>
</div>
<div class=" blockquote-footer">
<h3>How this website help You.</h3>
<h5>
This website will help you with GitHub. <br> From how to create an account in github to how to push in a repo.
</h5>
<br><br>
<h6>Click on the ☰ left side on the top to view Contents.</h6>
</div><br><br><br><br><br>
<div class="container card-footer">
<h6>If You have any Suggestions or Quarry <span><a href="https://github.com/Raviruler" target="_blank">contact</a></span> me on github.</h6>
<h6>View this project on <span><a href="https://github.com/Raviruler/githelp.github.io"> GitHub</a></span></h6>
</div>
</div>
<!-- Scripts -->
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>