-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse.html
More file actions
28 lines (23 loc) · 790 Bytes
/
course.html
File metadata and controls
28 lines (23 loc) · 790 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Course - Robin's Site</title>
<link rel="stylesheet" href="css/shared.css">
<link rel="stylesheet" href="css/notes.css">
<template id="meta-include" data-src="components/meta-tags.html"></template>
</head>
<body>
<header id="header-placeholder"></header>
<main>
<h1 id="course-title"></h1>
<section id="notes-list"></section>
</main>
<a href="index.html" class="back-link">Back to Home</a>
<footer id="footer-placeholder"></footer>
<script type="module" src="js/header-footer.js"></script>
<script src="notes/js/course.js"></script>
<script defer src="/_vercel/insights/script.js"></script>
</body>
</html>