-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (96 loc) · 3.5 KB
/
index.html
File metadata and controls
116 lines (96 loc) · 3.5 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
<!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">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/webslides.css">
<title>GitHub Tutorial</title>
</head>
<body>
<main role="main">
<article id="webslides" class="horizontal">
<!-- Slide 1 -->
<section>
<span class="background" style="background-image:url('images/b2.png'); opacity: 0.3"></span>
<div class="wrap aligncenter">
<h1><strong>Github using git</strong></h1>
</div>
</section>
<!-- Slide 2 -->
<section>
<div class="wrap size-50 aligncenter">
<h2><strong>Pre requisities</strong></h2>
<div class="bg-white shadow">
<ul class="flexblock reasons">
<li>
<h2>Install Git</h2>
<p>Download git bash from<pre> <b><u>http://git-scm.com/downloads</u></b> </pre><br>and then install in computer to create repository in local machine.</p>
</li>
<li>
<h2>Register on GitHub</h2>
<p>Go the following link to sign in or sign up on github.<pre> <b><u>https://github.com/</u></b> </pre></p>
</li>
<li>
<h2>
Knowledge
</h2>
<p>
You just need the basic knowledge of coding to start with.
</p>
</li>
</ul>
</div>
</div>
</section>
<!-- Slide 3 -->
<section>
<div class="wrap">
<div class="grid vertical-align">
<div class="column">
<h3 class="aligncenter"><strong>Create New Repository</strong></h3><br>
<div class="bg-black shadow">
<ul class="flexblock reasons">
<li>
<p>
Sign in to your github account.
</p>
</li>
<li>
<p>
On the home page, click on 'New Repository'.
</p>
</li>
<li>
<p>
Enter Repository name.
</p>
</li>
<li>
<p>
Set privacy policy as private or public.
</p>
</li>
<li>
<p>
Then click on Create Repository.
</p>
</li>
</ul>
</div>
</div>
<div class="column">
<img src="images/img1.png" alt="">
</div>
</div>
</div>
</section>
</article>
</main>
<script src="js/webslides.js"></script>
<script >
window.ws = new WebSlides();
</script>
</body>
</html>