-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (23 loc) · 814 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Namaste React</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<!-- <div id="header"><h2>Header</h2></div> -->
<div id="root">
This page will render when react not rendered.
</div>
<!-- <div id="footer"><h2>Footer</h2></div> -->
<!-- <div id = "container">
<h2 id="H1" class="heading">H1 heading!</h2>
<h2 id="H2" class="heading">H2 heading!</h2>
</div> -->
<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>
<script src="/app.js"></script>
</body>
</html>