-
Notifications
You must be signed in to change notification settings - Fork 0
/
Menu1.html
86 lines (78 loc) · 2.44 KB
/
Menu1.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>REVIVE</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
background: linear-gradient(120deg, #08023a 10%,#068A5E, #0fb7dd 85%);
}
h1 {
font-size: 35px;
margin-bottom: 150px;
}
.menu-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.menu-item {
width: 200px;
height: 200px;
background-color: #fff;
margin: 10px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
cursor:pointer;
transition:background-color 0.3s, transform 0.3s;
}
.menu-item:hover {
background-color: #f5f5f5;
transform: scale(1.1);
}
.menu-item-icon {
font-size: 48px;
margin-bottom: 10px;
}
.menu-item-label {
font-size: 16px;
}
</style>
</head>
<body>
<h1>--MENU--</h1>
<div class="menu-container">
<a href="sc1.html" class="menu-item">
<span class="menu-item-icon">🧘♂️</span>
<span class="menu-item-label">Self Care</span>
</a>
<a href="moodttracker.html" class="menu-item">
<span class="menu-item-icon">😄</span>
<span class="menu-item-label">Mood Tracker</span>
</a>
<a href="chatbot.html" class="menu-item">
<span class="menu-item-icon">🤖</span>
<span class="menu-item-label">Chatbot</span>
</a>
<a href="or.html" class="menu-item">
<span class="menu-item-icon">🌟</span>
<span class="menu-item-label">Other Resources</span>
</a>
</div>
</body>
</html>