LAB 4



1.Explain about the html code above.
-Html code above using the html color code enable to change the color of webpage.
-The color of webpage turn to yellow color.
-different color got the different html code,thats mean have their own specified code.
-Using unorder list html code to list down the information.The html code   for the unorder list is <ul> and <li>.
Using paragraph html code to made aother paragraph in the html.

2.Change the given HTML code by using an ordered list tags.
<html>
<head>
<title>My First Webpage</title>
</head>
<body bgcolor="#EDDD9E">
<h1 align="center">My First Webpage</h1>
<p>Welcome to my <strong>firat </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 pro...<br>
which I am of course.</p>
Here what I've learned:
<ol>
<li>How to use HTML tags</li>
<li>How to use HTML colours</li>
<li>How to create Lists</li>
</ol>
</body>
</html>


3.List 1o colours HEX value in HTML codes.
AliceBlue #F0F8FF
AntiqueWhite #FAEBD7
Aqua #00FFFF
Aquamarine #7FFFD4
Azure #F0FFFF
Beige #F5F5DC
Bisque #FFE4C4
Black #000000
BlanchedAlmond #FFEBCD
Blue #0000FF
 4.Proviede a HTML code for definition lists.
<dl>
  <dt>Coffee</dt>
  <dd>Black hot drink</dd>
  <dt>Milk</dt>
  <dd>White cold drink</dd>
</dl>



Comments