-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (28 loc) · 830 Bytes
/
index.html
File metadata and controls
36 lines (28 loc) · 830 Bytes
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
<!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>
<!-- Injecting/Linking External CSS File -->
<link rel="stylesheet" href="./index.css" />
</head>
<body>
<h1>Hello Top of Root</h1>
<div id="root">
<h1>Bharat is here!</h1>
</div>
<h1>Hello Below of Root</h1>
<!-- Injecting React and ReactDOM CDN Link -->
<script
crossorigin
src="https://unpkg.com/react@18/umd/react.production.min.js"
></script>
<script
crossorigin
src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"
></script>
<!-- Linking External JavaScript File -->
<script src="./App.js"></script>
</body>
</html>