forked from 4GeeksAcademy/TodoList-Emmanuel-Fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
20 lines (19 loc) · 1.2 KB
/
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>To do List</title>
<script src="https://kit.fontawesome.com/39ce96748d.js" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<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=Bebas+Neue&family=Indie+Flower&family=Poppins:wght@300;400;500;600;700&family=Russo+One&display=swap" rel="stylesheet">
</head>
<body>
<div id="app"></div>
<!-- Many of bootstrap components require the use of JavaScript to function -->
<!-- Popper and BootStrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>