-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (39 loc) · 1.86 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
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- responsive viewport meta tag -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="ToDo List App">
<title>ToDo List</title>
<!-- iSANDEx favicons -->
<link href="assets/img/isandex_favicon.png" rel="icon" >
<link href="assets/img/isandex_favicon.png" rel="apple-touch-icon">
<!-- Bootstrap theme Spacelab () -->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.css">
<!-- <link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css"> -->
<link rel="stylesheet" type="text/css" href="assets/css/styles.css">
<!-- don't use this in production: -->
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
</head>
<body>
<h1>ToDo List</h1>
<!-- we will put the React component inside this div -->
<div id="root"></div>
<!-- load react -->
<script src="https://unpkg.com/react/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom/umd/react-dom.development.js" crossorigin></script>
<!-- Footer with license file -->
<footer>
<div class="col">
<a href="https://github.com/jlulloaa/todo_list/blob/main/LICENSE" target="_blank">
<img alt="GitHub" src="https://img.shields.io/github/license/jlulloaa/todo_list?color=green&logo=github&style=social">
</a>
</div>
</footer>
<!-- load our react component. Remember to load them in order!!, so form.js must go BEFORE index.js, as the latter uses functions defined in the former-->
<script src="./assets/js/form.js" defer type="text/babel"></script>
<script src="./assets/js/todo.js" defer type="text/babel"></script>
<script src="./assets/js/index.js" defer type="text/babel"></script>
</body>
</html>