This repository has been archived by the owner on Jan 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperson1.html
98 lines (87 loc) · 3.11 KB
/
person1.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>PinkWebDev git course</title>
<link rel="stylesheet" href="css/gallery.min.css">
<link rel="stylesheet" href="css/gallery.theme.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<a href="index.html"><img src="img/logo.png" alt="Pink WebDev logotype"></a>
<div class="navigation">
<ul>
<li>
<a href="person1.html" class="selected">Person 1</a>
</li>
<li>
<a href="person2.html">Person 2</a>
</li>
<li>
<a href="github-pages.html">Github Pages</a>
</li>
<li>
<a href="links.html">Länkar</a>
</li>
</ul>
</div>
</header>
<div class="gallery items-5">
<div id="item-1" class="control-operator"></div>
<div id="item-2" class="control-operator"></div>
<div id="item-3" class="control-operator"></div>
<div id="item-4" class="control-operator"></div>
<div id="item-5" class="control-operator"></div>
<figure class="item">
<div class="instruction">
<h1>Steg 1</h1>
<p>
Skapa ett nytt repository på github. Klicka i “Initialize this repository with a README”, det gör att du kan klona ditt repository
direkt till din dator.
</p>
</div>
</figure>
<figure class="item">
<div class="instruction">
<h1>Steg 2</h1>
<p>
Klona det nya repositoryt till din dator.
</p>
</div>
</figure>
<figure class="item">
<div class="instruction">
<h1>Steg 3</h1>
<p>
Gå in i roten för repositoryt och skapa en enkel html-sida. Skapa en <h1>, vad som står i den är inte av så stor betydelse.
</p>
</div>
</figure>
<figure class="item">
<div class="instruction">
<h1>Steg 4</h1>
<p>
Committa din nya fil samt pusha den. Berätta för din vän att hen kan sätta igång med sina steg och invänta att hen ska bli
klar.
</p>
</div>
</figure>
<figure class="item">
<div class="instruction">
<h1>Steg 5</h1>
<p>
Din vän har nu gjort en pull request. Acceptera den och merga in den i din kodbas.
</p>
</div>
</figure>
<div class="controls">
<a href="#item-1" class="control-button">•</a>
<a href="#item-2" class="control-button">•</a>
<a href="#item-3" class="control-button">•</a>
<a href="#item-4" class="control-button">•</a>
<a href="#item-5" class="control-button">•</a>
</div>
</div>
</body>
</html>