NBA - Los Angeles Lakers
If You Had Any Problem Please Send Your Question To Us At  sagatorrent@gmail.com

Saturday 14 January 2012

Make Your own Downloadable Link

<html>
<head>
<title>download now...</title>
</head>
<body>
<a href="OUR FILE NAME HERE.YOUR FILE FORMAT NAME HERE">download now</a>
</body>
</html>

Wednesday 23 November 2011

To Display Horizontal Rules Of Various sizes


<html>                                                              
  <head>
       <title>my first page</title>
  </head>
        <body bgcolor="lightblue">
                   This is conventional document text.
                   A normal horizontal rules follow this text.
                   <hr>
                   The next three horizontal rules have size 12pixels, 36pixles,
                   and 72pixels respectively
                          <hr size = 12>
                          <hr size = 36>
                          <hr size = 72>
        </body>
</html>
                                                                     OUTPUT

What is Alignment???

Alignment( <alignment> ) is one of the "left", "right",and "center" 
values. Depending upon this value the heading is accordingly
alignment. That is, ALIGN = RIGHT is given, then the given heading is right aligned. Similarly, for ALIGN = CENTER, the given heading is centralized and so on...... 

Heading In HTML (H1....H6) With Alignment....


<html>                                                              
  <head>
       <title>my first page</title>
  </head>
        <body>
                <h1 align= left>Level One Heading</h1>
                <h2 align= right>Level Two Heading</h2>
                <h3 align= center>Level Three Heading</h3>
                <h4 align= left>Level Four Heading</h4>
                <h5 align=  right>Level Five Heading</h5> 
                <h6 align= center>Level Six Heading</h6> 
        </body>
</html>
                                                                       OUTPUT


Heading In HTML (H1....H6)


<html>                                                              
  <head>
       <title>my first page</title>
  </head>
        <body>
              <center>  <h1>Level One Heading</h1>
                <h2>Level Two Heading</h2>
                <h3>Level Three Heading</h3>

                 NOTICE THE SIZE!!!!!</center>
        </body>
</html>
                                     
                                                              OUTPUT

Font Option In HTML With CENTER Tag

<html>                                                                
  <head>
       <title>my first page</title>
  </head>
        <body>
                  <center> <font size="5" face="comic sans ms" color="blue">hello!!.. world</font></center>
        </body>
</html>


                                                                OUTPUT



Tuesday 22 November 2011

Colors And Their RGB Values


Color
Red
Green
Blue
Hexadecimal
Black
0
0
0
#000000
White
255
255
255
#FFFFFF
Red
255
0
0
#FF0000
Green
0
192
0
#00C000
Blue
0
0
255
#0000FF
Yellow
255
255
0
#FFFF00