-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NoodleFeed and More</title>
<link rel="stylesheet" type="text/css" href="./index.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Livvic|Monoton&display=swap" rel="stylesheet">
</head>
<body>
<div id="skip"><a href="#content">Skip to Main Content</a></div>
<div class="nav-bar">
<div class="logo">
<img alt="noodle logo" src="img/nood-logo.png"/>
<h1>NoodleFeed</h1>
</div>
</div>
<div class="content" id="content">
<div id="app" role="main"></div>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
<script src="./js/Router.js" type="module"></script>
</body>
</html>