mirror of
https://github.com/creativetimofficial/vue-material-kit.git
synced 2025-05-23 04:04:22 +08:00
39 lines
1017 B
HTML
39 lines
1017 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, shrink-to-fit=no"
|
|
/>
|
|
<link
|
|
rel="apple-touch-icon"
|
|
sizes="76x76"
|
|
href="./assets/img/apple-icon.png"
|
|
/>
|
|
<link rel="icon" type="image/png" href="./src/assets/img/favicon.png" />
|
|
<title>Material Kit 2 by Creative Tim</title>
|
|
<!-- Fonts and icons -->
|
|
<link
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Roboto+Slab:400,700"
|
|
/>
|
|
<!-- Font Awesome Icons -->
|
|
<script
|
|
src="https://kit.fontawesome.com/42d5adcbca.js"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
<!-- Material Icons -->
|
|
<link
|
|
href="https://fonts.googleapis.com/icon?family=Material+Icons+Round"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|