-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 1.78 KB
/
Copy pathindex.html
File metadata and controls
32 lines (30 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MathsG - Smart Maths Gullak</title>
<style>
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; text-align: center; background-color: #f4f7f6; color: #333; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; }
.container { background-color: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); width: 80%; max-width: 600px; }
h1 { color: #2c3e50; margin-bottom: 10px; }
p { color: #7f8c8d; line-height: 1.6; margin-bottom: 25px; }
.links { display: flex; justify-content: center; gap: 20px; }
.btn { display: inline-block; padding: 12px 24px; text-decoration: none; border-radius: 6px; font-weight: bold; transition: background-color 0.3s, color 0.3s; }
.btn-policy { border: 2px solid #3498db; color: #3498db; }
.btn-policy:hover { background-color: #3498db; color: #fff; }
.btn-ads { border: 2px solid #2ecc71; color: #2ecc71; }
.btn-ads:hover { background-color: #2ecc71; color: #fff; }
</style>
</head>
<body>
<div class="container">
<h1>YS-Tech Academy</h1>
<p>Welcome to the official developer page for the <b>MathsG - Smart Maths Gullak</b> app. Explore our collection of Vedic Maths Tricks and challenging quizzes designed for young minds.</p>
<div class="links">
<a href="https://ystechacademy.github.io/privacy-policy" class="btn btn-policy">Privacy Policy</a>
<a href="https://ystechacademy.github.io/app-ads.txt" class="btn btn-ads">App-Ads.txt Verification</a>
</div>
</div>
</body>
</html>