-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
101 lines (98 loc) · 3.81 KB
/
dashboard.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
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MindCraft</title>
<link rel="icon" type="image/x-icon" href="images/logo.png">
<link rel="stylesheet" href="css/style.css">
<script src="javascript/script.js"></script>
</head>
<body style="height: 100%;">
<div class="header">
<div class="message">
<h1 class="h1">Hello !!!<br />Select your choice</h1>
</div>
<!-- <div class="image">
<img class="dimg" src="images/header anim.png" alt="Header animal" class="img">
</div> -->
</div>
<div class="welcome">
<table>
<tr>
<th style="width: 50%;">
<a href="chatbot/index.html">
<div class="options">
<h1 style="font-size: 20px;">Chat with Me</h1>
<img src="images/chat.png" alt="" style="width:30%;">
</div>
</a>
</th>
<th style="width: 50%;">
<a href="gameSection.html">
<div class="options">
<h1 style="font-size: 20px;">Game for you</h1>
<img src="images/game.png" alt="" style="width:30%;">
</div>
</a>
</th>
</tr>
<tr>
<th style="width: 50%;">
<a href="readingSection.html">
<div class="options">
<h1 style="font-size: 20px;">Reading Time</h1>
<img src="images/reading.png" alt="" style="width:30%;">
</div>
</a>
</th>
<th style="width: 50%;">
<a href="yogaSection.html">
<div class="options">
<h1 style="font-size: 20px;">Yoga</h1>
<img src="images/yoga.png" alt="">
</div>
</a>
</th>
</tr>
<tr>
<th style="width: 50%;">
<a href="meditationSection.html">
<div class="options">
<h1 style="font-size: 20px;">Meditation</h1>
<img src="images/meditation.png" alt="" style="width:30%;">
</div>
</a>
</th>
<th style="width: 50%;">
<a href="Music Player/index.html">
<div class="options">
<h1 style="font-size: 20px;">Music</h1>
<img src="images/music.png" alt="">
</div>
</a>
</th>
</tr>
<tr>
<th style="width: 50%;">
<a href="https://www.pixilart.com/draw">
<div class="options">
<h1 style="font-size: 20px;">Drawing Space</h1>
<img src="images/drawing.png" alt="" style="width:30%;">
</div>
</a>
</th>
<th style="width: 50%;">
<a href="writingSpace.html">
<div class="options">
<h1 style="font-size: 20px;">Writing Space</h1>
<img src="images/writing.png" alt="" style="width:30%;">
</div>
</a>
</th>
</tr>
</table>
</div>
</body>
</html>