-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 984 Bytes
/
index.html
File metadata and controls
27 lines (24 loc) · 984 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Math Problems Hub</title>
<meta name="description" content="Practice-friendly math pages with no ads and no subscriptions.">
<link rel="stylesheet" href="styles.css">
</head>
<body class="home-page">
<main class="container home-container" aria-labelledby="home-title">
<header class="home-header">
<p class="home-kicker">Math Practice</p>
<h1 id="home-title">Fun Math Problems</h1>
<p class="home-subtitle">Pick a topic and start practicing instantly.</p>
</header>
<div id="topic-catalog" class="catalog-grid" aria-live="polite"></div>
<noscript>
<p class="noscript-note">Please enable JavaScript to view the problem catalog.</p>
</noscript>
</main>
<script src="index.js" type="module" defer></script>
</body>
</html>