-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
23 lines (23 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="src/assets/icons/icon-72x72.png" />
<!-- SEO -->
<link rel="manifest" href="./manifest.json" type="application/json" />
<meta name="theme-color" content="#FFFFFF" />
<meta name="description" content="Project slicing UI from any source into real interface using frontend tech stack" />
<!-- Google font Montserrat -->
<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=Montserrat:wght@100;300;400;500&display=swap" rel="stylesheet">
<!-- Font Awesome 5 CDN -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project Slicing UI - Travel App 3</title>
</head>
<body>
<div class="app" id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>