-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
22 lines (22 loc) · 863 Bytes
/
index1.html
File metadata and controls
22 lines (22 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EternalBit - IT Products & Expert Services</title>
<!-- Load React and ReactDOM UMD builds -->
<script src="https://unpkg.com/react@18.2.0/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@18.2.0/umd/react-dom.production.min.js"></script>
<!-- Load Babel Standalone for JSX transpilation -->
<script src="https://unpkg.com/@babel/standalone@7.24.7/babel.min.js"></script>
<!-- Load Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Link to external CSS -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="root"></div>
<!-- Link to external JavaScript -->
<script type="text/babel" src="app.js"></script>
</body>
</html>