-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.html
28 lines (28 loc) · 1012 Bytes
/
library.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/styles.css">
<link rel="stylesheet" href="/css/topmenu.css">
<title>Document</title>
</head>
<body>
<div id="topmenu">
<a href="/index.html">Home</a>
<a href="/contact-me.html">Contact Me</a>
<a href="/beginning.html">The Beginning</a>
<a href="/lessons.html">Summary of Lessons</a>
<a href="/library.html">My Personal Library</a>
</div>
<div id="librarypage">
<h1>Library</h1>
<h2>A library of my favorite stuff.</h2>
<p>Don't re-invent the wheel. Especially if there are wheels that already work perfectly for you and they are free! But be sure
to credit the developers for all their hard work!
</p>
<h3>CSS Stuff</h3>
<p><a href="/library/library-buttons.html">CSS Buttons</a></p>
</div>
</body>
</html>