-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlearning.html
More file actions
57 lines (51 loc) · 2.01 KB
/
Copy pathlearning.html
File metadata and controls
57 lines (51 loc) · 2.01 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tech Learning · feiyang3cat</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Nunito:ital,wght@0,600;0,700;0,800;1,600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<nav class="nav">
<a class="nav-home" href="index.html">=^· ⩊ ·^=</a>
<div class="nav-links">
<a href="papers.html">Papers</a>
<a href="learning.html" class="active">Learning</a>
<a href="cheetah.html">Cheetahs</a>
<a href="bouldering.html">Bouldering</a>
</div>
</nav>
<header class="hero">
<h1 class="hero-title">Tech Learning</h1>
<p class="hero-sub">~ other tech things i'm picking up ~</p>
</header>
<main class="papers">
<!-- ════ To add an entry, copy one <article> block and edit it. ════ -->
<article class="paper">
<div class="paper-head">
<h2 class="paper-title">Your first topic</h2>
<div class="paper-meta">
<span class="meta-date">June 2026</span>
<span class="tag tag-topic">Topic</span>
<span class="tag tag-todo">todo</span>
</div>
</div>
<div class="notes">
<!-- TODO: write your notes -->
<p>Write your notes here as simple HTML — <strong>bold</strong>,
<code>code</code>, lists, etc.</p>
</div>
</article>
</main>
<footer class="site-footer">
<div class="footer-cats" aria-hidden="true">=^..^= =^..^= =^..^=</div>
<a href="https://github.com/feiyang3cat/feiyang3cat.github.io" target="_blank" rel="noopener">source on GitHub</a>
</footer>
</div>
</body>
</html>