-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 1.09 KB
/
Copy pathindex.html
File metadata and controls
29 lines (28 loc) · 1.09 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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>JS-Sec Labs</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<div id="app" class="app-shell">
<!-- Header and background are injected by UI -->
<main class="container">
<section class="hero">
<h1 class="glow">JS-Sec Labs</h1>
<p class="tagline">面向实战的 JavaScript 安全靶场</p>
</section>
<section>
<div id="directionsText" aria-label="directions" class="text-layout"></div>
</section>
</main>
</div>
<script type="module" src="assets/js/ui.js"></script>
<script type="module" src="assets/js/main.js"></script>
</body>
</html>