forked from sharetribe/just-enough-git
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
46 lines (39 loc) · 968 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Interactive Git tutorial - Just enough for a non-developer</title>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600' rel='stylesheet' type='text/css'>
<style type="text/css">
html, body {
background-color: #f6f7f7;
font-family: 'Source Sans Pro', sans-serif;
text-align: center;
color: #333;
}
h1 {
margin: 20px 0px;
font-size: 26px;
}
.description {
font-size: 18px;
line-height: 28px;
margin-top: 15px;
}
.box {
padding: 60px 0px;
max-width: 620px;
width: 90%;
background-color: #ffffff;
border-radius: 5px;
margin: 10% auto 0;
}
</style>
</head>
<body>
<div class="box">
<h1>Welcome to interactive Git and GitHub tutorial</h1>
<p class="description">This is how you resolve conflicts like a rockstar!</p>
</div>
</body>
</html>