-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (17 loc) · 1.23 KB
/
index.html
File metadata and controls
26 lines (17 loc) · 1.23 KB
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
<!DOCTYPE html> <!-- HTML 5 file -->
<html lang="en"> <!-- Declare language -->
<head> <!-- Start of head section -->
<meta charset="utf-8"> <!-- Use Unicode character set -->
<link rel="stylesheet" type="text/css" href="11-resources/01-css/style.css">
<title>PracticalSeries: Git Lab</title>
</head>
<body>
<h1>A Practical Series Website</h1>
<figure class="cover-fig">
<img src="https://masteringgithub.com/00-comres/11-resources/02-images/mgh-logo_06.svg" alt="cover logo">
</figure>
<h3>A note by the author</h3>
<p>This is my second Practical Series publication—this one happened by accident too. The first publication is all about building a website, you can see it here. This publication came about because I wanted some sort of version control mechanism for the first publication.</p>
<p>There are lots of different version control systems (VCS) out there; some are free, some are commercial applications just google it. If you do, you will find that Git and GitHub show up again and again.</p>
</body>
</html>