Popular Posts

Wednesday, 27 July 2011

HTML Images

HTML images are defined with the <img> tag

For example:
<img src="picture1.jpg" width="98" height="210" />

Thursday, 14 July 2011

If you want to bold your contents in the web page use:
<B> type your text here </B>
Below is the example in the program:
html>
<head>
<title>Title of page</title>
</head>
<body>
This is my first page
<b>This text is bold</b>
</body>
</html



Friday, 8 July 2011

Today ,I'll explained some more tags:
<html> tag:
  • It used to describes the web page 
 <body> tag:
  • It used to display the web page contents in your browser
<h1> tag:
  • It used to display the heading in your page
More Heading tag: 

<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>

<p> tag:
  • It used to display the paragraph in your page


    Thursday, 7 July 2011

    Learn HTML First!

    Learn Web Designing -Learn different web designing languages and much more




    Here I'll teach you different web designing languages and SQL  as well but first we will start by learning HTML:

    HTML stands for Hyper Text Markup Language
    Basically,HTML is not a programming language,it's a markup language
    A markup language is the collection of markup tags e.g < > and HTML uses markup tags to define a web page 

    For Example:

    <html>
    <body>

    <h1>My First Heading</h1>
    This is my first web page
    <p>My first paragraph.</p>

    </body>
    </html>

    To TRY! save the above code into a notepad on your local drive and named anything with the extension ".html" ,so let say "test.html" but the most important thing is to remember ".html" extension.