-
Notifications
You must be signed in to change notification settings - Fork 33
/
index.html
40 lines (28 loc) · 1.1 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
<!doctype html>
<html>
<head>
<!-- Declare the character set of your files -->
<meta charset="utf-8">
<!-- Give your page a title "Exercise ###" -->
<title>Module 14: Exercise 4</title>
<!-- Set the author of the page to your name -->
<meta author="your-name">
<!-- Set device width to ensure proper renering on mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Read in css file -->
<link href="css/main.css" rel="stylesheet" type="text/css">
<!-- Read in jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.js"></script>
<!-- Read in React scripts -->
<script src="https://unpkg.com/react@15/dist/react.js"></script>
<script src="https://unpkg.com/react-dom@15/dist/react-dom.js"></script>
<!-- Read in our main.jsx file -->
<script type="text/jsx" src="main.jsx"></script>
<!-- Read in Babel Script -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.14.0/babel.min.js"></script>
</head>
<body>
<main>
</main>
</body>
</html>