-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (76 loc) · 2.51 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to My Homepage</title>
<meta name="image" content="https://vyvee.github.io/logo-maths-cache.png" />
<meta property="og:image" content="https://vyvee.github.io/logo-maths-cache.png" />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Ubuntu:wght@700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
padding: 20px;
background-color: #F4F2FF;
color: #333;
text-align: center;
margin: 0;
}
h1 {
font-family: 'Ubuntu', sans-serif;
color: #502B85;
}
.container {
max-width: 800px;
margin: auto;
padding: 20px;
}
p {
font-size: 18px;
color: #555;
}
.app-link {
color: #FFF;
background-color: #6A67CE;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
display: inline-block;
margin-top: 20px;
transition: background-color 0.3s;
}
.app-link:hover {
background-color: #7B78D7;
}
.app-section {
background-color: #ECE5F9;
border-radius: 8px;
padding: 20px;
margin: 20px 0;
}
.footer {
font-size: 14px;
color: #888;
margin-top: 40px;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to My Homepage!</h1>
<p>Discover various informative contents and insights here. Explore the sections below:</p>
<!-- Link to the Maths Cache page -->
<div class="app-section">
<h2>Featured App: 数学秘籍 Maths Cache</h2>
<p>Efficient maths notes and tools for reference and revision, ideal for students. Available as a web app and on Google Play Store.</p>
<a href="maths-cache.html" class="app-link">Learn More About Maths Cache</a>
</div>
<!-- Other content links -->
<a href="kuala_lumpur_sunrise_sunset.html" class="app-link">Kuala Lumpur's Sunrise and Sunset Times</a>
<!-- Additional links can be added here -->
</div>
<div class="footer">
© 2024 Vee Voon Yee. All rights reserved.
</div>
</body>
</html>