-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlessons.html
More file actions
29 lines (29 loc) · 1.24 KB
/
lessons.html
File metadata and controls
29 lines (29 loc) · 1.24 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
27
28
29
<!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="lessonpage">
<h1>Summarized Page of Lessons</h1>
<p><a href="/lessons/lesson_setting-up-nginx-docker-image.html">Setting up a Test Web Server with Docker and NGINX</a></p>
<p><a href="/lessons/lesson_html_tables.html">A HTML Table Playground</a></p>
<p><a href="/lessons/lesson_html_forms.html">Forms Galore</a></p>
<p><a href="/lessons/lesson_html_div-page.html">Starting with the Div Tag</a></p>
<p><a href="/lessons/lesson_html_classes.html">Playing with Classes in Div Tags</a> </p>
<p><a href="/lessons/lesson_html_css_positioning.html">CSS Positioning</a></p>
<p><a href="/lessons/lesson_html_fonts.html">Fonts</a></p>
</div>
</body>
</html>