-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (50 loc) · 1.21 KB
/
index.html
File metadata and controls
58 lines (50 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu</title>
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #f5f5f5;
font-family: Arial, sans-serif;
}
.container {
display: flex;
gap: 1.5rem;
}
a {
text-decoration: none;
}
.btn {
padding: 0.9rem 2rem;
font-size: 1.1rem;
border-radius: 8px;
border: none;
cursor: pointer;
background: #0077ff;
color: #fff;
transition: 0.25s;
}
.btn:hover {
background: #005bd1;
transform: translateY(-2px);
}
.btn:active {
transform: scale(0.97);
}
</style>
</head>
<body>
<div class="container">
<a href="Exercise/API/index.html" class="btn">APIs</a>
<a href="Games/index.html" class="btn">Games</a>
</div>
</body>
</html>