Add 1 files
Browse files- index.html +23 -39
index.html
CHANGED
@@ -1,41 +1,25 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
-
<html>
|
3 |
-
|
4 |
-
<
|
5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0"
|
6 |
-
<
|
|
|
|
|
7 |
<style>
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
h1 {
|
25 |
-
font-size: 50px;
|
26 |
-
}
|
27 |
-
h1 span {
|
28 |
-
color: #acacac;
|
29 |
-
font-size: 32px;
|
30 |
-
}
|
31 |
-
</style>
|
32 |
-
</head>
|
33 |
-
<body>
|
34 |
-
<h1>
|
35 |
-
<span>I'm ready to work,</span><br />
|
36 |
-
Ask me anything.
|
37 |
-
</h1>
|
38 |
-
<img src="https://enzostvs-deepsite.hf.space/arrow.svg" class="arrow" />
|
39 |
-
<script></script>
|
40 |
-
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=drdata/x" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
41 |
-
</html>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Interactive Hong Kong Map</title>
|
7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
8 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
9 |
<style>
|
10 |
+
#map-container {
|
11 |
+
perspective: 1000px;
|
12 |
+
}
|
13 |
+
.district {
|
14 |
+
transition: all 0.3s ease;
|
15 |
+
transform-style: preserve-3d;
|
16 |
+
}
|
17 |
+
.district:hover {
|
18 |
+
transform: translateY(-5px) scale(1.02);
|
19 |
+
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
|
20 |
+
z-index: 10;
|
21 |
+
}
|
22 |
+
.district.active {
|
23 |
+
transform: translateY(-10px) scale(1.05);
|
24 |
+
box-shadow:
|
25 |
+
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|