Recent

6/recent/ticker-posts

HTML (7)

HTML (7)


The IT Krew: What is the different way to connect computer network


Important Tags


  • BASEFONT = This tag is used to set the basic size,color,face of the Font.
Tag : <basefont>

  • FONT = This tag is used to  change the size, style , color.

Font size = To change the size of font.



Eg ↓↓↓↓

<html>
<head>
<title>my page</title>
<body>
<font size= 10 >this is a sample text</font>
</body>
</html>





Font color = To change the Font color

Eg↓↓↓↓↓↓↓↓

<html>
<head>
<title>My page</title> 
</head>
<body>
<font color = blue>This is a sample text</font>
</body>
</html>




Font Face = This is used to change the face of the Font.

Eg ↓↓↓↓↓

<html>
<head>
<title> My page</title>
</head>
<body>
<font face ="times new roman">
this is a sample text
</font>
</body>
</html> 





<html>
<head>
<title> My page</title>
</head>
<body>
<font face ="Arial">
this is a sample text
</font>
</body>
</html> 




HORIZONTAL RULES

This tag is used to put a horizontal line

Tag : <hr>

Example ↓↓↓↓↓↓

<html>
<head>
<title>My Page</title>
</head>
<body>
This is a sample Text
<hr>
This is a sample text
</body>
</html>



<html>
<head>
<title>My Page</title>
</head>
<body>
This is a sample Text
<hr size = 12>
This is a sample text
</body>
</html>



Post a Comment

0 Comments