Recent

6/recent/ticker-posts

HTML (5)

HTML (5)

Image result for cartoon images


VIDEO




Container and Empty Elements


  • Container = These element require a closing tag
EG: <html>.... </html> , <head>....</head>


  • Empty = These element does not require closing tag
EG: <br> , <img>

 Background Graphics

  • Background Tag  = This tag is used to change the background 
TAG : <body background = "filename.gif">

Eg ↓↓↓↓↓↓

<html>
<head>
<title>sample page</title>
</head>
<body background = "filename.gif">
sample text 
</body>
</html>


  • Background color = This tag is used to change the background color
TAG : <bg color >

Eg ↓↓↓↓↓↓↓

<html>
<head>
<title>My Page</title>            
<head>
<body bgcolor ="yellow">
sample text
</body>
</html>


  • Text Color = This tag is used to change the color of the Text
TAG: <text = "red">

Eg ↓↓↓↓↓↓

<html>
<head>
<title>My page</title>   
</head>
<body text = "red">
Sample Text
</body>
</html>


  • Link Color = This tag is used to change the Color of Link

  1. link = link color
  2. vlink = visited link color
  3. alink = active link color

Eg ↓↓↓↓↓↓



<html>

<head>

<title>My Page </title>

</head>
<body link = "red" vlink = "blue" alink = "yellow">
sample text
</body>
</html>




Image result for cartoon images



Post a Comment

0 Comments