forked from HebrewTools/ParseTrainer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.23 KB
/
index.html
File metadata and controls
48 lines (43 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Morphology Master</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {}
}
};
</script>
<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=Rubik:ital,wght@0,300..900;1,300..900&display=swap"
rel="stylesheet" />
<style>
@font-face {
font-family: 'SBL Hebrew';
src: url('fonts/SBL_Hbrw.ttf') format('truetype');
font-style: normal;
font-weight: 400;
font-display: swap;
}
body {
font-family: 'Rubik', sans-serif;
}
.hebrew-text {
direction: rtl;
font-family: 'SBL Hebrew', serif;
line-height: 1.25;
font-feature-settings: 'kern' 1, 'liga' 1;
}
</style>
</head>
<body class="bg-gray-100 text-gray-900 dark:bg-gray-900 dark:text-gray-100 transition-colors duration-300">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>