-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinterface2.html
More file actions
51 lines (51 loc) · 1.51 KB
/
Copy pathinterface2.html
File metadata and controls
51 lines (51 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tile Interface</title>
<style>
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(to right, #2c2c54, #854cc7, #2c2c54); /* Medium dark navy blue */
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
display: flex;
gap: 20px;
}
.tile {
width: 220px;
height: 150px;
background: #031946;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: bold;
text-align: center;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
cursor: pointer;
transition: 0.3s;
text-decoration: none;
color: white;
}
.tile:hover {
transform: scale(1.05);
background: linear-gradient(135deg, #2a4d7e, #23395d);
}
</style>
</head>
<body>
<div class="container">
<a href="GAMES2/Chemistry 4/index.html" class="tile">🎮 Start Game 1</a>
<!-- <a href="i.html" class="tile">🚀 Play Game 2</a> -->
</div>
</body>
</html>