forked from CraigDoesCode/git-workshop-test-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·41 lines (37 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="resources/images/favicon-32x32.png">
<title>Git Basis | The Git That Keeps on Giving</title>
<link rel="stylesheet" href="resources/css/style.css">
</head>
<body>
<main>
<div class="card">
<div class="mobile overlay">
<img class="mobile" src="resources/images/image-header-mobile.jpg" alt="" />
</div>
<div class="info">
<h1>We are learning Git <span>insights</span> </h1>
<p class='main-text'>Discover the benefits of of using GitHub dont just sort your repositries... pull, fork and merge them.</p>
<div class="stats">
<div class="stat"><h2>innit</h2> <span>git add</span></div>
<div class="stat"><h2>status</h2> <span>git commit</span></div>
<div class="stat"><h2>branch</h2> <span>git checkout</span></div>
</div>
</div>
<div class="image desktop">
<div class="overlay"></div>
</div>
</div>
</main>
<footer>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Craig Norford</a>.
</div>
</footer>
</body>
</html>