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 pathperson2.html
96 lines (85 loc) · 2.94 KB
/
person2.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
<!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">Person 1</a>
</li>
<li>
<a href="person2.html" class="selected">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>
Invänta att din vän ger dig klartecken att starta. Gör en fork av din väns repository.
</p>
</div>
</figure>
<figure class="item">
<div class="instruction">
<h1>Steg 2</h1>
<p>
Klona din nya fork lokalt till din dator.
</p>
</div>
</figure>
<figure class="item">
<div class="instruction">
<h1>Steg 3</h1>
<p>
Se till att du har rätt upstream genom att göra git remote -v git remote add upstream https://github.com/username/repo.git
</p>
</div>
</figure>
<figure class="item">
<div class="instruction">
<h1>Steg 4</h1>
<p>
Gör en ändring i index.html, commita den och pusha den.
</p>
</div>
</figure>
<figure class="item">
<div class="instruction">
<h1>Steg 5</h1>
<p>
Gå in på din fork på github och tryck på knappen "new pull request". Berätta för din vän att du är klar.
</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>