-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.4 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.4 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
<!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.0" />
<title>personal_website</title>
<link rel="icon" type="image/png" href="%BASE_URL%branding/favicon-96x96.png" sizes="96x96" />
<link id="site-favicon" rel="icon" type="image/svg+xml" href="%BASE_URL%branding/favicon.svg" />
<link id="site-shortcut-icon" rel="shortcut icon" href="%BASE_URL%branding/favicon.ico" />
<link id="site-apple-touch-icon" rel="apple-touch-icon" sizes="180x180" href="%BASE_URL%branding/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="MyWebSite" />
<link rel="manifest" href="%BASE_URL%branding/site.webmanifest" />
<link
href="https://cdn.jsdelivr.net/npm/@mdi/font@5.x/css/materialdesignicons.min.css"
rel="stylesheet"
/>
<link href="https://www.w3schools.com/w3css/4/w3.css" rel="stylesheet" />
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
/>
</head>
<body>
<noscript>
<strong>
This website doesn't work properly without JavaScript enabled. Please
enable it to continue.
</strong>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>