-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.07 KB
/
index.html
File metadata and controls
33 lines (30 loc) · 1.07 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
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Proverbs Insights</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif&family=Ma+Shan+Zheng&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
<main class="container">
<h1>Proverbs Insights</h1>
<nav class="page-nav">
<ul class="page-list">
<li>
<a href="/languages/go" class="category-button">Go Proverbs Insights</a>
</li>
<li>
<a href="/quotes/" class="category-button">Quotes</a>
</li>
</ul>
</nav>
<div id="quoteDisplay" class="quote-card fade-in">
<p class="quote-text">Welcome to Proverbs Insights, a collection of wisdom from programming languages and
great thinkers.</p>
</div>
</main>
<script src="/assets/js/script.js"></script>
</body>
</html>