Friday, 17 April 2015

ADDING COLOR TO FONT IN HTML-


<html>

<head>
<title>Web Designing</title>
</head>

<body bgcolor="black">

<font face="Times New Roman" color="RED" size="5">

THIS TEXT IS in "TIMES NEW ROMAN "font and in red color with font size=5 

</font>
</body>
</html>
                 

                                                              RESULT


Creating Title in HTML -



<html>

<head>

<title> CREATING TITLE </title>

</head>


<body>
</body>
</html>

                                       
                                                                      RESULT


ADDING BACKGROUND COLOR IN HTML PAGE-


<html>

<head>
<title> CREATING BACKGROUND COLOR
</head>

<body bgcolor="yellow">

yellow colour is added in background
                           

</body>
</html>



                                                            RESULT

                  

CREATING BODY IN HTML-


<html>

<head>
<title> creating body </title>
</head>

<body>
                            BODY IS CREATED

</body>
</html>
                           
                                                                          RESULT