-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.html
24 lines (24 loc) · 1.38 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
<!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">
<link rel="apple-touch-icon" sizes="180x180" href="/public/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/public/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/public/img/favicon-16x16.png">
<link rel="manifest" href="/public/site.webmanifest">
<link rel="stylesheet" type="text/css" href="/public/fontawesome/css/all.css"/>
<link rel="stylesheet" type="text/css" href="/public/DateTimePicker.css"/>
<link rel="stylesheet" type="text/css" href="/public/fonts/roboto/roboto.css"/>
<link rel="stylesheet" type="text/css" href="/public/fonts/robotoMono/robotoMono.css"/>
<title>Iknaio App</title>
<style type="text/css">
/* Inherit font for for form elements; https://stackoverflow.com/questions/26140050/why-is-font-family-not-inherited-in-button-tags-automatically#:~:text=Form%20elements%20don't%20inherit,to%20set%20these%20properties%20manually.&text=If%20you%20inspect%20your%20demo,from%20the%20browser%20style%20sheet. */
input, select, textarea, button{font-family:inherit;}
</style>
</head>
<body>
<script type="module" src="/src/main.js"></script>
</body>
</html>