-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogs.html
More file actions
95 lines (84 loc) · 2.63 KB
/
blogs.html
File metadata and controls
95 lines (84 loc) · 2.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PointA Blogs</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="background-glow"></div>
<header class="site-header">
<div class="brand">PointA</div>
<nav class="nav-links">
<a href="index.html">Home</a>
<a href="blogs.html">Blogs</a>
<a href="blogs-fr.html">FR</a>
</nav>
</header>
<main>
<section class="grid">
<div class="grid__header">
<p class="eyebrow">Blogs</p>
<h2>Thoughts, guides, and reflections</h2>
</div>
<div class="grid__items">
<article class="card">
<a href="blogs/blog-1.html" class="card__link">
<div class="card__body">
<h3>Who We Are</h3>
<p>Point A is your starting place.</p>
</div>
</a>
</article>
<article class="card">
<a href="blogs/blog-2.html" class="card__link">
<div class="card__body">
<h3>What is OSAP?</h3>
<p>If you’re wondering what the heck is OSAP, you’re not alone!</p>
</div>
</a>
</article>
<article class="card">
<a href="blogs/blog-3.html" class="card__link">
<div class="card__body">
<h3>What If You’re an Immigrant and Need OSAP?</h3>
<p>If you’re new to Canada and hoping to go to college or university.</p>
</div>
</a>
</article>
<article class="card">
<a href="blogs/blog-4.html" class="card__link">
<div class="card__body">
<h3>OSAP and Dependants</h3>
<p>OSAP has two different types of applicants. </p>
</div>
</a>
</article>
<article class="card">
<a href="blogs/blog-5.html" class="card__link">
<div class="card__body">
<h3>Scholarships</h3>
<p>A scholarship is free money from an organization to help you pay for school.</p>
</div>
</a>
</article>
<article class="card">
<a href="blogs/blog-6.html" class="card__link">
<div class="card__body">
<h3>Apprenticeship and Entrepreneurship</h3>
<p>If college and university aren’t for you, there are other options.</p>
</div>
</a>
</article>
</div>
</section>
</main>
<footer class="site-footer">
<p>© 2025 PointA</p>
</footer>
</body>
</html>