-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LipoStyle</title>
<!-- import some react scripts -->
<script crossorigin src="https://unpkg.com/react@18/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"></script>
<!-- Load Babel -->
<!-- v6 <script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script> -->
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<!-- import some css files -->
<link rel="stylesheet" href="indexStylesheet.css">
<link rel="stylesheet" href="headerStylesheet.css">
<link rel="stylesheet" href="footerStylesheet.css">
</head>
<body>
<!--This is the header-->
<header></header>
<script type="text/babel" src="header.js" defer></script>
<!--This is the main body-->
<!-- This is the footer -->
<footer></footer>
<script type="text/babel" src="footer.js" defer></script>
</body>
</html>