-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (64 loc) · 2.34 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Using Github Pages for projects</title>
<!-- Boostrap Stylesheet -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" media="screen">
</head>
<body>
<div class="container">
<div class="col-md-12">
<!-- any weird symbols here such as > or < are HTML escape characters. http://www.theukwebdesigncompany.com/articles/entity-escape-characters.php -->
<!-- these allow us to do things like write escaped HTML, or HTML that just gets rendered as text in the document -->
<h1>Using Github Pages for Projects</h1>
<section>
<hr>
<h2>Step 1</h2>
<p>
Add/rename a file in your project to be "index.html". This page will act as the landing page for your projects site.
</p>
<div class="container">
<div class="col-md-12" style="padding-left: 0px; padding-right: 0px;">
<img src="images/im1.png" class="img-responsive">
</div>
</div>
</section>
<section>
<hr>
<h2>Step 2</h2>
<p>
Go to the Settings tab for your project and scroll down to the Github Pages section. Click the drop down menu beneat the Source section and select 'master branch'.
</p>
<div class="container">
<div class="col-md-12" style="padding-left: 0px; padding-right: 0px;">
<img src="images/im2.png" class="img-responsive">
</div>
</div>
</section>
<section>
<hr>
<h2>Step 3</h2>
<p>
When you clicked save, your page should have refreshed. Scroll back down to the github pages section and click the link next to "your site is ready to be published"
</p>
<div class="container">
<div class="col-md-12" style="padding-left: 0px; padding-right: 0px;">
<img src="images/im3.png" class="img-responsive">
</div>
</div>
</section>
<section>
<hr>
<h2>Notes</h2>
<p>
<li>The github pages site can take a few minutes before it is updated and your projects page becomes accessible.</li>
<li>There are some reserved characters, such as "-" or "/" that need to be removed from your project name before the github page for your project will work.</li>
</p>
</section>
</div>
</div>
</body>
</html>