forked from sheesh19/all-about-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
42 lines (39 loc) · 1.38 KB
/
template.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Title Here</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link rel="stylesheet" href="/app/assets/stylesheets/style.css" type="text/css" />
<link href="https://fonts.googleapis.com/css2?family=Work+Sans&display=swap" rel="stylesheet">
</head>
<body>
<div class="wrap">
<p id="options">
<a href="#">About</a>
</p>
<h1><a href="#">Collaborating with Git</a></h1>
<ul id="menu">
<li><a href="#">Home</a></li>
<li><a href="#">Topics</a></li>
<li><a href="#">Advanced Search</a></li>
<li><a href="#">Contributors</a></li>
</ul>
<div class="clear"></div>
</div>
</div>
<div id="footer">
<div class="wrap">
<ul>
<li><a href="#">Topics</a></li>
<li><a href="#">Advanced Search</a></li>
<li><a href="#">Contributors</a></li>
</ul>
<div id="col">
<p>Design by Robin Klaus 2020</p>
<p>Content produced and improved by participants of Le Wagon's Git Workshop</p>
</div>
<div class="clear"></div>
</div>
</div>
</body>
</html>