-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 962 Bytes
/
index.html
File metadata and controls
30 lines (30 loc) · 962 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Working With GitHub Pages</title>
<!-- link to main stylesheet -->
<link rel="stylesheet" type="text/css" href="/css/main.css">
</head>
<body>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/syllabus">Syllabus/Assignment</a></li>
<li><a href="/blog">Blog</a></li>
</ul>
</nav>
<div class="container">
<div class="blurb">
<h1>Working With GitHub Pages</h1>
<p>During today's session, we will learn how to build a personal website using GitHub Pages. <a href="/about">Learn about Git, GitHub, and GitHub Pages</a></p>
</div><!-- /.blurb -->
</div><!-- /.container -->
<footer>
<ul>
<li><a href="mailto:catherine.deane@vanderbilt.com">email</a></li>
<li><a href="https://github.com/CADeane">github.com/CADeane</a></li>
</ul>
</footer>
</body>
</html>