Advertisements

Saturday, August 27, 2011

// // Leave a Comment

Filling Background in a page

Dear All,
This is to tell you that how to insert background color and image in a webpage.
For Filling Color as Background
We use bgcolor attribute with body tag. Here is an example showing that how to fill color.
<html>
<head>
<title>Webpage with Background Color
</title>
</head>
<body bgcolor="red">
This page will have Red color as its background.
</body>
</html>
For Inserting Image as Background
We use background attribute with body tag. Here is an example showing that how to insert image as background.
<html>
<head>
<title>Webpage with Background Color
</title>
</head>
<body background="Background.jpg">
This page will have an Image named Background.jpg as its background.
</body>
</html>
This page will have my photos as its background.
Keep reading. Do not forget to share or leave feedback.
+John Bhatt 
Read More

Wednesday, August 24, 2011

// // Leave a Comment

Anna Hazare - Latest Rockstar












Read More

Monday, August 22, 2011

// // Leave a Comment

New Latest Movie.............SuperHIt Must Watch If Found


Read More
// // Leave a Comment

Happy Independence Day.............


Read More

Thursday, August 18, 2011

// // Leave a Comment

First Web page

Hello! Welcome Back,

Now open the notepad by Typing notepad in Run
Run command.
Now type the following codes in notepad and save it with extension .htm or .html.



<br />First HTML Page<br />


Anything you want to display in the website, you are allowed to write here.

....

....

........




Now I am going to describe the above codes.
First we started with tag which starts the HTML language. This is to identify that the script is written in HTML for Web-Browsers. Then we started tag which is used to write scripts and for advance level use. Then we started tag. This is the title of page which is written in Title Bar of Browser. Then we closed tag using forward slash . Then we also closed tag using forward slash . Now our header area is closed and we have to start body of web page with  tag. We can write anything we want to display in the webpage inside body area. After writing the body contents we have to close  tag with . And we closed all HTML tags by the help of tag.
In brief these are the most important tags to create a webpage.
Visit next post for next chapter.
Read More

Monday, August 1, 2011

// // Leave a Comment

HTML Codes/ Tags


Hi,
I have introduced you with HTML in my earlier post. Now we will start creating HTML files. i.e. Web Pages.
HTML is scripting language which is written in codes, called tags. These tags are written inside angle brackets (<>).
These tags are of two types.
  • Container Tag: Also called Paired Tags. These tags have endings also. These tags are closed with forward slash (/). eg. …..,
<p> ....  </p>
<h1>.... </h1>
<center> .... </center>
<table>..... </table>
<span> .... </span>


  • 2) Empty Tag: Also known as single tag. These tags do not have endings. Eg.
    <hr >
    <br >
    
  • Keep reading and send feedback.
    Read More
    // // Leave a Comment

    HTML Introduction


    HTML is a Programming Language. It’s full form is Hyper Text Markup Language.
    This language is invented by Swish Physician Tim Berners-Lee in 1990 AD at European Laboratory, Switzerland.
    Definition:
    HTML is a simple scripting language used to create hypertext documents. Hyper text document is a piece of text that works as link.
    Before HTML, it was SGML which is abbreviation of Standard Generated Markup Language.
    Read More