-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
82 lines (75 loc) · 1.84 KB
/
index2.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
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="CSS/reseter.css">
<link rel="stylesheet" href="CSS/style.css">
<style>
.bg-gray-900 {
background-color: gray;
}
.justify-between {
justify-content: space-between;
}
.justify-center {
justify-content: center;
/*gap: 20px;*/
}
.flex {
display: flex;
}
.block {
display: block;
}
</style>
<title>Spaced repetition</title>
</head>
<body>
<header class="bg-gray-900">
<div class="flex justify-center">
<img src="./img/logo.svg" alt="">
<p>Hello</p>
<a href="" class="text-white">Pricing</a>
<a href="" class="text-white">Courses</a>
<a href="" class="text-white">Blog</a>
<a href="" class="text-white">Forum</a>
</div>
<div>
<a href="" class="text-white block">Login</a>
<button>Sign Up</button>
</div>
</header>
<nav>
<ul>
<li><a href="#">Learning</a></li>
<li><a href="#">Techniques</a></li>
<li>Spaced repetition</li>
</ul>
</nav>
<main>
<section>
<h1>Spaced repetition</h1>
<p>Spaced repetition is an evidence-based learning technique that is usually performed with flashcards.</p>
<a href="https://www.youtube.com/watch?v=ZXVhOPiM4mk">
<img src="https://i.kym-cdn.com/entries/icons/facebook/000/024/918/big_1482307605_image.jpg" width="500"
alt="hotdog.jpg">
</a>
<h2>Is it effective?</h2>
<p>Research says yes, experience of lots of people (including mine) - also yes.</p>
<h2>Software</h2>
<dl></dl>
<ol>
<li><a href="#">Anki Flashcards</a></li>
<li><a href="#">Quizlet</a></li>
<li><a href="#">Obsidian plugins</a></li>
<li>A lot of others!</li>
</ol>
</section>
<input type="text">
</main>
<footer>
<p>Look ima footer</p>
</footer>
</body>
</html>