-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 1.32 KB
/
index.html
File metadata and controls
31 lines (30 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript Feature Tester</title>
<style>
body { font-family: Arial, sans-serif; background-color: #f4f4f9; color: #333; }
.container { max-width: 900px; margin: auto; padding: 20px; }
.header { text-align: center; margin-bottom: 40px; }
.header h1 { margin: 0; }
.section { margin-bottom: 30px; padding: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
.section h2 { margin-top: 0; }
.output { background-color: #f0f0f0; padding: 10px; margin-top: 10px; border-radius: 4px; }
button { margin-right: 10px; padding: 10px 20px; border: none; border-radius: 4px; background-color: #007bff; color: #fff; cursor: pointer; }
button:hover { background-color: #0056b3; }
video { width: 100%; max-width: 400px; margin-top: 10px; border-radius: 8px; }
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>JavaScript Feature Tester</h1>
<button onclick="testAllFeatures()">Test All Features</button>
</div>
<div id="feature-sections"></div>
</div>
<script src="app.js"></script>
</body>
</html>