-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.25 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href="./src/index.css" type="text/css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css?family=Crimson+Pro:300|Crimson+Text|Rosario|Sintony|Rufina&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<script type="module" src="/src/index.js"></script>
<title>QBN Reader</title>
</head>
<body>
<div class="container-wrapper">
<div class="container">
<div id="page-header"></div>
<div class="content-scrollable">
<div class="page-content">
<div id="page-title-container" class="h3">
<span id="page-title" class="h3">Page</span>
</div>
<p id="text">Fragment text</p>
</div>
<div id="choice-buttons" class="btn-grid">
<button id="choice-1" class="choice-btn">Choice 1</button>
<button id="choice-2" class="choice-btn">Choice 2</button>
</div>
</div>
</div>
</div>
</body>
</html>