-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact.html
More file actions
48 lines (41 loc) · 1.34 KB
/
react.html
File metadata and controls
48 lines (41 loc) · 1.34 KB
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
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>React Todo App</title>
<link rel="stylesheet" href="css/styles.css">
<!-- React v18.3.1 CDN -->
<script crossorigin src="https://unpkg.com/react@18.3.1/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@18.3.1/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
</head>
<body>
<div class="app-container">
<header class="main-header">
<div class="header-content">
<div class="header-text">
<h1>Todo App</h1>
<p class="header-subtitle">in React</p>
</div>
<nav class="navigation">
<a href="index.html" class="nav-link home-link">
Home
</a>
<a href="jquery.html" class="nav-link jquery-link">
jQuery Version
</a>
</nav>
</div>
</header>
<main class="main-content">
<div class="react-todo-container"></div>
</main>
<footer class="main-footer">
<p>© 2025 React Todo App - <a href="index.html">Back to Home</a></p>
</footer>
</div>
<!-- Load React Application -->
<script type="text/babel" src="js/react-app.js"></script>
</body>
</html>