-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 997 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="/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#CD1619" />
<title>荷兰小厨 - Chinese Recipes for Everyone</title>
<link
rel="stylesheet"
type="text/css"
href="./src/assets/fonts/fonts.min.css"
/>
<style>
#root {
width: calc(100% - 4rem);
max-width: 1280px !important;
margin: 0 auto auto auto;
padding: 1rem 2rem 0 2rem;
text-align: center;
font-family: "Proxima Nova", Georgia, sans-serif;
}
h1 {
font-family: proxima_nova_altblack, Georgia, sans-serif;
color: rgb(0, 0, 0);
margin: 0;
text-align: left;
}
</style>
</head>
<body width="100%">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>