forked from carolinepar/comp426Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
22 lines (20 loc) · 773 Bytes
/
home.html
File metadata and controls
22 lines (20 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>426Sports</title>
<!-- Include links to CSS stylesheets below -->
<link rel="stylesheet" href="customstyle.css"/>
<link rel="stylesheet" href="node_modules/bulma/css/bulma.css"/>
</head>
<body>
<div id="root"></div>
<br>
</body>
<!-- Include links to JavaScript files below -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="node_modules/axios/dist/axios.min.js"></script>
<script type="module" src="render.js"></script>
<script src="https://www.thesportsdb.com/api.php"></script>
</html>