-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
108 lines (97 loc) · 3.69 KB
/
resources.html
File metadata and controls
108 lines (97 loc) · 3.69 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
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
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resources - Schoolify</title>
<link rel="stylesheet" href="style.css">
<style>
.resource-category {
margin-bottom: 40px;
}
.resource-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
}
.resource-card {
border: 1px solid #ddd;
padding: 20px;
border-radius: 8px;
text-align: center;
background-color: #f9f9f9;
transition: transform 0.2s;
}
.resource-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.resource-card h3 {
margin-top: 0;
}
.btn-affiliate {
display: inline-block;
margin-top: 15px;
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}
.btn-affiliate:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<header>
<h1>Recommended Resources</h1>
<nav>
<a href="index.html">Home</a>
</nav>
</header>
<main style="max-width: 1000px; margin: 20px auto; padding: 20px;">
<p>We have curated a list of trusted resources to help with your child's education. These links include
affiliate partners, meaning we may earn a commission if you make a purchase at no extra cost to you.</p>
<section class="resource-category">
<h2>📚 Textbooks & Study Guides</h2>
<div class="resource-list">
<div class="resource-card">
<h3>Booktopia</h3>
<p>Australia's local bookstore. Huge range of textbooks and study guides.</p>
<a href="https://www.booktopia.com.au/" target="_blank" rel="nofollow noopener"
class="btn-affiliate">Shop Booktopia</a>
</div>
<div class="resource-card">
<h3>QBD Books</h3>
<p>Great prices on educational books and stationery.</p>
<a href="https://www.qbd.com.au/" target="_blank" rel="nofollow noopener" class="btn-affiliate">Shop
QBD</a>
</div>
<div class="resource-card">
<h3>Angus & Robertson</h3>
<p>Iconic Australian bookseller with a vast educational collection.</p>
<a href="https://www.angusrobertson.com.au/" target="_blank" rel="nofollow noopener"
class="btn-affiliate">Shop Angus & Robertson</a>
</div>
</div>
</section>
<section class="resource-category">
<h2>🎓 Tutoring Services</h2>
<div class="resource-list">
<div class="resource-card">
<h3>Cluey Learning</h3>
<p>Expert online tutoring for Years 2-12 in English, Maths, and Chemistry.</p>
<a href="https://clueylearning.com.au/" target="_blank" rel="nofollow noopener"
class="btn-affiliate">Find a Tutor</a>
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 Schoolify. All rights reserved. | <a href="privacy.html">Privacy Policy</a> | <a
href="terms.html">Terms of Use</a></p>
</footer>
</body>
</html>