-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
44 lines (34 loc) · 1.81 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-CA" xml:lang="en-CA">
<head>
<title>PERFUMENUKE</title>
<meta charset="utf-8"/>
<link rel="icon" type="image/x-icon" href="img/favicon.ico"/>
<link href="style.css" rel="stylesheet" type="text/css"/>
<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=Work+Sans:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<div id="reactcontainer">
</div>
<script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.24.0/babel.js"></script>
<!--<script src="https://unpkg.com/react@16/umd/react.production.min.js" crossorigin></script>-->
<!--<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js" crossorigin></script>-->
<!--<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>-->
<script type="text/javascript" src="scripts/PerfumeNuke.js"></script>
<script type="text/babel" src="scripts/TickBox.jsx"></script>
<script type="text/babel" src="scripts/IngredientPicker.jsx"></script>
<script type="text/babel" src="scripts/InfoButton.jsx"></script>
<script type="text/babel" src="scripts/FormulaBody.jsx"></script>
<script type="text/babel" src="scripts/DatabaseBody.jsx"></script>
<script type="text/babel" src="scripts/AnalysisBody.jsx"></script>
<script type="text/babel" src="scripts/Page.jsx"></script>
<script type="text/babel">
const container = document.querySelector('#reactcontainer');
ReactDOM.render(React.createElement(Page), container);
</script>
</body>
</html>