-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 924 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/pdf_icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PDF - template maker</title>
<link rel="stylesheet" href="/css/qcss.css" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script src="/src/bundle.js"></script>
<script src="https://kit.fontawesome.com/dd2c5124db.js" crossorigin="anonymous"></script>
</body>
</html>
<style>
@font-face {
font-family: Helvetica;
src: url("@/assets/fonts/Helvetica.ttf");
}
.font-Helvetica {
font-family: Helvetica;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}
</style>