BIW 10103 | INTRO TO WEB TECHNOLOGY Semester II 2020/2021
Lab #4: HTML COLORS & LISTS CINDY BEH XIN YI AI200259 INSTRUCTION 1. By using Notepad, type the following text: <html> <head> <title>My First Webpage</title> </head> <body bgcolor="#EDDD9E"> <h1 align="center">My First Webpage</h1> <p>Welcome to my <strong>first</strong> webpage. I am writing this page using a text editor and plain old html. </p> <p>By learning html, I'll be able to create web pages like a pro................................................ <br> which I am of course.</p> Here's what I've learned: <ul> <li>How to use HTML tags</li> <li>How to use HTML colours</li> <li>How to create Lists</li> </ul> </body> </html> 1. Save the file as mypage3.html. 2. ...