forked from github/opensource.guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyWeb.html
93 lines (93 loc) · 2.68 KB
/
MyWeb.html
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>You Don't Need JavaScript</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 20px;
}
.container {
background-color: white;
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
position: relative;
}
h1 {
color: #333;
}
.links {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.links a {
color: #0066cc;
text-decoration: none;
}
.links a:hover {
text-decoration: underline;
}
.dark-mode-toggle {
position: absolute;
top: 10px;
right: 10px;
background-color: #4CAF50;
color: white;
padding: 5px 10px;
border-radius: 15px;
font-size: 12px;
cursor: pointer;
}
.chat-bubble {
position: fixed;
bottom: 10px;
right: 10px;
background-color: #9c27b0;
color: white;
padding: 5px 10px;
border-radius: 15px;
font-size: 12px;
}
</style>
</head>
<body>
<div class="container">
<h1>You Don't Need JavaScript</h1>
<div class="links">
<a href="#">About</a>
<a href="#">Alert</a>
<a href="#">Animated Boxes</a>
<a href="#">Animated Buttons</a>
<a href="#">Art</a>
<a href="#">Author</a>
<a href="#">Batman-Hover-Button</a>
<a href="#">Burger-Menu-1</a>
<a href="#">Card-Flip</a>
<a href="#">Card-Hover</a>
<a href="#">Carousel-1</a>
<a href="#">Carousel-2</a>
<a href="#">Checkbox-Counter</a>
<a href="#">Coffeemachine</a>
<a href="#">Css-Toggle-Modal</a>
<a href="#">Cube</a>
<a href="#">Dark-Mode</a>
<a href="#">FaceAnimation</a>
<a href="#">Flip-1</a>
<a href="#">Flip-2</a>
<a href="#">Floating-Labels-1</a>
<a href="#">FloatingInput</a>
<a href="#">Flower-Animation</a>
<a href="#">Form_validation</a>
<a href="#">Game-1</a>
</div>
<div class="dark-mode-toggle">🌙 Dark Mode</div>
</div>
<div class="chat-bubble">We Are Here! 👋</div>
</body>
</html>