-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (21 loc) · 763 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (21 loc) · 763 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Title of Site</title>
<!-- Reference to css/main.css -->
<link rel="stylesheet" href="css/main.css" />
<!-- Reference to bootstrap.min.css -->
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css" />
</head>
<body>
<!-- Reference to our Vue.js Package -->
<script src="lib/vue/vue.js"></script>
<!-- Reference to bootstrap.min.js package -->
<script src="lib/bootstrap/js/bootstrap.min.js"></script>
<!-- Reference to js/app.js -->
<script src="js/app.js"></script>
</body>
</html>