-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlooks.html
More file actions
73 lines (64 loc) · 1.5 KB
/
Copy pathlooks.html
File metadata and controls
73 lines (64 loc) · 1.5 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Neon Mode Demo</title>
<style>
body {
margin: 0;
padding: 20px;
font-family: 'Arial', sans-serif;
background: #ffffff;
color: #000000;
transition: background 0.5s, color 0.5s;
}
h1 {
font-size: 2.5em;
}
.neon-mode {
background-color: #000000;
color: #39ff14;
}
.neon-mode h1,
.neon-mode p {
text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
margin-top: 20px;
border: 2px solid #000;
background-color: #eee;
color: #000;
transition: all 0.3s;
}
.neon-mode button {
background: transparent;
border: 2px solid #ff00ff;
color: #ff00ff;
text-shadow: 0 0 5px #ff00ff;
box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}
.neon-mode a {
color: #00ffff;
text-shadow: 0 0 5px #00ffff;
}
</style>
</head>
<body>
<h1>Welcome to My Fun Site</h1>
<p>This is normal mode. Click the button below to enter <strong>NEON MODE</strong>! 🌈</p>
<button onclick="toggleNeon()">Toggle Neon Mode</button>
<p style="margin-top: 40px;">
Check out more cool stuff on
<a href="https://example.com" target="_blank">my page</a>!
</p>
<script>
function toggleNeon() {
document.body.classList.toggle("neon-mode");
}
</script>
</body>
</html>