-
Notifications
You must be signed in to change notification settings - Fork 0
/
newsletter.html
131 lines (124 loc) · 4.67 KB
/
newsletter.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/blog.css">
<link rel="shortcut icon" href="elixirlogo.png" type="image/x-icon" />
<title>Elixir Activity</title>
</head>
<body>
<header>
<nav>
<div class="logo">
<h1>Elixir School</h1>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="portal.php">Portal</a></li>
<li><a href="activity.html">Activity</a></li>
<li class="active">Newsletter</li>
<li><a href="about.html">About Us</a></li>
</ul>
<box-icon name='menu' animation='tada' id="menu" ></box-icon>
</nav>
<div class="header-content">
<h1>Newsletter</h1>
<p>Below are our Newsletters for each class, do well to check the specific letter for your child/student</p>
<p><box-icon name='chevrons-down' type='solid' animation='fade-down' color='whitesmoke' ></box-icon></p>
</div>
</header>
<!-- Newsletter -->
<section class="about">
<div class="row">
<div class="about-left">
<h2>Creche / Kindergarten / Basic</h2>
<img src="images/CKB_newsletter.jpg" alt="newsletter_top">
<p>1st part</p>
</div>
<div class="about-middle">
<img src="images/CKB_newsletter1.jpg" alt="newsletter_bottom">
<p>2nd part</p>
</div>
<div class="about-right">
<p>Please check both parts for a complete newsletter!</p>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="about">
<div class="row">
<div class="about-left">
<h2>Junior Secondary 1 & 2</h2>
<img src="images/JS12_newsletter.jpg" alt="newsletter_top">
<p>1st part</p>
</div>
<div class="about-middle">
<img src="images/JS12_newsletter1.jpg" alt="newsletter_bottom">
<p>2nd part</p>
</div>
<div class="about-right">
<p>Please check both parts for a complete newsletter!</p>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="about">
<div class="row">
<div class="about-left">
<h2>Junior Secondary 3</h2>
<img src="images/JS3_newsletter.jpg" alt="newsletter_top">
<p>1st part</p>
</div>
<div class="about-middle">
<img src="images/JS3_newsletter1.jpg" alt="newsletter_bottom">
<p>2nd part</p>
</div>
<div class="about-right">
<p>Please check both parts for a complete newsletter!</p>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="about">
<div class="row">
<div class="about-left">
<h2>Senior Secondary 1</h2>
<img src="images/SS1_newsletter.jpg" alt="newsletter_top">
<p>1st part</p>
</div>
<div class="about-middle">
<img src="images/SS1_newsletter1.jpg" alt="newsletter_bottom">
<p>2nd part</p>
</div>
<div class="about-right">
<p>Please check both parts for a complete newsletter!</p>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="about">
<div class="row">
<div class="about-left">
<h2>Senior Secondary 2</h2>
<img src="images/SS2_newsletter.jpg" alt="newsletter_top">
<p>1st part</p>
</div>
<div class="about-middle">
<img src="images/SS2_newsletter1.jpg" alt="newsletter_bottom">
<p>2nd part</p>
</div>
<div class="about-right">
<p>Please check both parts for a complete newsletter!</p>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>Made with <box-icon name='heart' type='solid' color='red'></box-icon> 2022 Elixir School. All Rights Reserved.</p>
</footer>
<script src="https://unpkg.com/boxicons@latest/dist/boxicons.js"></script>
<script src="js/menu.js"></script>
</body>
</html>