-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.37 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!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>Vue-folio</title>
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;900&display=swap"
rel="stylesheet"
/>
<!-- Fontawesome icons -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.1.1/css/all.css"
integrity="sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ"
crossorigin="anonymous"
/>
<!-- Css file -->
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<div id="app">
<!-- Render the component for the corresponding route -->
<router-view></router-view>
</div>
<footer>
© Developed by <a href="https://feelfreewithme.vercel.com">Marlon Dela Torre</a>
</footer>
<!-- Axios -->
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<!-- VueJS 3 -->
<script src="https://unpkg.com/vue@3"></script>
<!-- Vue Router -->
<script src="https://unpkg.com/vue-router@4"></script>
<!-- Main Js file -->
<script src="./assets/js/main.js"></script>
</body>
</html>