Lab01-HTML V1.01 - 082023
Lab01-HTML V1.01 - 082023
1) There are various IDE available for Web development. E.g., Notepad, Visual Studio,
Sublime, Notepad++, Atom, etc.
- You may view the websites below to check on the review on each of the IDE.
o https://hackr.io/blog/web-development-ide
o https://tms-outsource.com/blog/posts/web-development-ide/
2) Notepad text editor will be used for this subject throughout this semester.
Introduction to HTML5
Reference:
https://learn.shayhowe.com/html-css/
https://codepen.io/shayhowe/collections/?cursor=ZD0xJm89MCZwPTI=
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8">
<title>My First Page</title>
</head>
<body>
<h1>Chew [Replace with your own Name]</h1>
</body>
</html>
3) Open the file with a browser (E.g., Firefox, Google Chrome, Internet Explorer, etc.)
4) Screenshot the output of the browser and make sure your name is visible.
Table
1. Create the following table using HTML.
Row One Row Two Row Three
One Two Three
Four Five Six
Seven Eight Nine
…
Complete the code
…
</table>
Embedding IMAGE
6. Using the starting sample page and the image supplied, embed the image into your
webpage with different style (size).
- A sample of code:
<figure>
<img src = "imgs/taylors.png" alt = "my university"
width="1000" height="400">
</figure>
Hyperlinks
1. Create four different links (absolute reference) to link to the different school in your
university.
- You may use the following website to obtain school information
- https://university.taylors.edu.my/en/study/faculties-and-school.html
<THE END>