top of page

Exercise  1

Screenshot 2026-05-07 at 8.42_edited.jpg

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta name="viewport" content="width=device--width, initial-scale=1">

<title> Max's website</title>

</head>

<body>

<h1>HTML day 1</h1>

Welcome to Max's website!

<b>Hiii</b>

<h2>feb 18, 2026</h2>

 

<p>

"Lorem ipsum doolor sit met consectetur adipiscing elit. <br>sed d eiusmod tempor incidunt utlabore et dolore magna aliqa.<br><br><br>

<b>this is not engish</b>Ut enim ad minnim veniam, <i>quis nortrud exercitation ullaco laboris nisi unit aliqui ex ea ommodo consequat.</i> Duis aute irure dolor in represehederit in voluptate velit esse cillum doore eu figuiat nulla pariatur. <u>Excepteur sint occaecat cupidatat non proident</u>, sunnt in culpa qu officia deseunt mollit anim id est laborum."

</p>

</body>

 

<pre>

for example, use of pre

1

2

3


 

</pre>

 

<p>

<em>(em)Volutate velit esse ccilum dolore eu fgiat nulla pariatur.</em><br>

<i>(i)examle</i><br>

<u>(u) example</u><br>

<b>(b) example</b><br>

<strong>(strong) example</strong><br>

<hr><hr>

</p>

 

<p>

This is a link tag

<a href="https://jleung11.wixsite.com/html-website-study">

The a is the tag. href is the hyperlink reference.

</a>

<br>

<a href="https://jleung11.wixsite.com/html-website-study" target="_blank">

The link will open in a new webpage.

</a>

<br>

</p>

<br><br><br>

<ul>

<li>Paper</li>

<li>Pencil</li>

<li>ruler</li>

<li>Flower</li>

<li>Orange</li>

<li>Apple</li>

</ul>

<br><br>

<ol>

<li>Paper</li>

<li>Pencil</li>

<li>ruler</li>

<li>Flower</li>

<li>Orange</li>

<li>Apple</li>

</ol>

<br><br>

 

<table>

<table border =”10” cellspacing=”10”>

<tr>

<th>Sunday</th>

<th>Monday</th>

<th colspan="2" >Tuesday </th>

<th>Wednesday</th>

<th>Thursday</th>

<th>Friday</th>

<th>Saturday</th>

</tr>

</table>

<br><br><br>

 

<table>

<table border="12"

<table border =”50” cellpadding=”20” cellspacinng="0">

<tr>

<td rowspan="3">Subject</td>

<td>Programming 12</td>

<td>Chemistry 12</td>

<td>Accounting 12</td>

<td>Law 12</td>

<td>Computer Study</td>

<td>band</td>

<td>Pre-calculus</td>

</tr>

<tr>

<td>Programming 12</td>

<td>Chemistry 12</td>

<td>Accounting 12</td>

<td>Law 12</td>

<td>Computer Study</td>

<td>band</td>

<td>Pre-calculus</td>

</tr>

<tr>

<td>Programming 12</td>

<td>Chemistry 12</td>

<td>Accounting 12</td>

<td>Law 12</td>

<td>Computer Study</td>

<td>band</td>

<td>Pre-calculus</td>

</tr>

</table>

<br>

<img src="ramen1.jpg" alt="ramen" width="300" height="400" border="10" >

<br><br>

<img src="ramen2.jpg" alt="ramen" width="60" height="80" border="10" >

</html>

bottom of page