-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlog.html
More file actions
179 lines (159 loc) · 5.35 KB
/
Copy pathBlog.html
File metadata and controls
179 lines (159 loc) · 5.35 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jayvien Ng Zhen Yuan Blog </title>
<link rel="stylesheet" type="text/css" href="Style.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background-color: #f4f4f4;
}
#container {
width: 90%;
margin: auto;
overflow: hidden;
}
#header {
background: #003366;
color: #ffffff;
padding: 20px;
text-align: center;
}
#header img {
max-width: 100%;
height: auto;
}
#nav {
float: left;
width: 20%;
background: #ddd;
padding: 15px;
box-sizing: border-box;
}
#nav ul {
list-style: none;
padding: 0;
}
#nav ul li {
margin: 10px 0;
}
#nav ul li a {
text-decoration: none;
color: #333;
font-weight: bold;
}
#main {
float: left;
width: 80%;
padding: 15px;
box-sizing: border-box;
}
#main img, video {
max-width: 100%;
height: auto;
margin: 10px 0;
}
#footer {
clear: both;
background: #003366;
color: #fff;
text-align: center;
padding: 10px 0;
margin-top: 20px;
}
hr {
border: 0;
height: 2px;
background: #003366;
margin: 20px 0;
}
h1, h2, h3, h4 {
color: #003366;
}
</style>
</head>
<body>
<div id="container">
<!-- Header Section -->
<div id="header">
<h1>Welcome to My Website</h1>
<p>Hope you like it</p>
<hr>
<img src="image.jpg" alt="Header Image">
</div>
<!-- Navigation Section -->
<div id="nav">
<h3>Navigation</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Resources.html">Resources</a></li>
<li><a href="Blog.html">Blog</a></li>
</ul>
</div>
<!-- Main Content -->
<div id="main">
<h2>Blog Page</h2>
<p>CONTENTS:</p>
<!-- Day 1 -->
<h3>Day 1: (Fun yet Interesting)</h3>
<hr>
<h4>Icecream Stick Bridge O.O</h4>
<p>Using ice cream sticks to make a stable bridge to withstand weights of different types of tools.</p>
<p>We must complete the following tasks:</p>
<ul>
<li>Width of 5cm</li>
<li>Length of 30cm</li>
</ul>
<p>Our bridge was so flexible that it surprisingly didn't break at all, even after putting on weights of tools.</p>
<img src="img/bridge.jpeg" alt="Completed Bridge">
<!-- Day 2 and Day 3 -->
<h3>Day 2 / Day 3:</h3>
<hr>
<h4>Airplane Messenger</h4>
<p>Using A4 size paper to create 3 different airplane designs to pass messages to the furthest location.</p>
<p>Plan 1:</p>
<img src="img/Plan Plane.jpg" alt="Plan 1">
<p>Plan 2:</p>
<img src="img/Plan Plane 2.jpg" alt="Plan 2">
<p>Plan 3:</p>
<img src="img/Plan Plane 3.jpg" alt="Plan 3">
<p>Design 1:</p>
<img src="img/Plane 1.jpg" alt="Design 1">
<p>Design 2:</p>
<img src="img/Plane 2.jpg" alt="Design 2">
<p>Design 3:</p>
<img src="img/Plane 3.jpg" alt="Design 3">
<h4>(In the end, Design 3 proved to be the best plane created to fly the furthest.)</h4>
<!-- Plane Launcher -->
<h4>Plan for Automatic Plane Launcher</h4>
<p>We must make a plane launcher which is programmed by Arduino to control its movement and direction.</p>
<p>Plan 1 (For Automatic Plane Launcher):</p>
<img src="img/Plan 1.jpg" alt="Plan 1">
<p>SKETCH 1:</p>
<img src="img/sketch 1.jpg" alt="Sketch 1">
<p>Plan 2 (Using Arduino):</p>
<img src="img/Smashing Rottis.png" alt="Arduino Plan">
<p>Outer Product:</p>
<img src="img/launcher.jpeg" alt="Plane Launcher">
<p>Product (Inside):</p>
<img src="img/inside.jpg" alt="Inside View of Launcher">
<p>Fixing Our Product:</p>
<img src="img/fixing 1.jpeg" alt="Fixing the Product">
<p>Video of the Finished Product (Testing):</p>
<video width="500" controls>
<source src="img/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<!-- Footer Section -->
<div id="footer">
Thank You For Reading! ;)
</div>
</div>
</body>
</html>