-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (50 loc) · 2.5 KB
/
index.html
File metadata and controls
54 lines (50 loc) · 2.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://infinite-memory.netlify.app/img/infinite-twitter-card.jpg">
<meta name="twitter:title" content="Infinite Memory">
<meta name="twitter:title" content="A tool for memorizing things">
<title>Infinite Memory</title>
</head>
<body>
<main>
<div class="container-fluid max-wide">
<div class="px-4 py-5 text-center">
<img class="d-block mx-auto mb-4" src="/img/undraw_solution_mindset_-34-bi.svg" alt="" width="150" height="150">
<h1 class="display-4 fw-bold">Infinite Memory (beta)</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">Quickly review memory verses</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<button id="reset" type="button" class="btn btn-reset btn-lg px-4 gap-3">Reset All</button>
<!-- <button type="button" class="btn btn-outline-secondary btn-lg px-4">Secondary</button> -->
</div>
</div>
</div>
<!-- <div class="divider2"></div> -->
<h2 class="text-center display-6 fw-bold py-3">
Tutorial Video
</h2>
<div class="tutorial container text-center my-5 ratio ratio-16x9">
<iframe src="https://www.youtube.com/embed/qgInM6FH8Lk?rel=0" allowfullscreen></iframe>
</div>
<!-- <div class="divider2"></div> -->
<div class="container-fluid py-5 px-5 text-center">
<h2 class="text-center display-6 fw-bold py-3">Select Verse and Scroll 👇</h2>
<img class="d-block mx-auto mb-4" src="/img/undraw_select_re_3kbd.svg" alt="" width="150" height="150">
<!-- Here's where the cards go -->
<div class="cards container-fluid"></div>
<!-- Here's where the reference buttons go -->
<ul class="list-unstyled m-2 references"></ul>
</div>
</div>
</main>
<script src="/memory.js"></script>
</body>
</html>