Skip to main content

Introduction to Html

Remember:
Whenever you are going to design a page or code a page of Html you have to remember 3 things.
  1. Tags 
  2. Elements:
  3. Attributes
1. Tags:

2. Elements:
An element consist of
  1. <p> opening tag
  2. Content: i like Qtutor
  3. </p> an ending tag.
Accroding to elements of Html that the (<body> </body>) , (<head> </head>) are elements.


Note Again: Whenever you open a tag then close it when it's work done.

Attributes:

Reliability:
What is the reliability of your webpage. It means you have to code carefully because your one mistake can make you in big problem and remember one more thing that your page will be viewed by thousands of users then it have to be user friendly.

Prepared yourself:
If you are ready and read our introduction to Html's and ready to be a Html designer then go ahead.


After this lesson you will actually will be on the rest of the chapters of the Html.





Comments

Popular posts from this blog

Manipulating WW2 Fire AirCraft

In this tutorial we will be learning some indispensable techniques to use for any type of photo-manipulation. We will be doing this by taking a photograph of a model plane and editing it to to look like a photograph of a WW2 spitfire which has just been shot down and is on fire. The techniques used here are the same for any type of 'destruction' photo-manipulation. Below is the link you will learn how to create. In the second part of this tutorial we will go on to use this image in a movie poster/DVD cover design View Tutorial

Simple Hit counter

A hit counter will let us know how many times a page is accessed. Incase one visitors loads the page several times, the hit counter willincrease several times (but this is likely to happen only a few times). The code for the hit counter bellow will save the number of hits in afile named counter.txt (the name of this file may be changed). Each time the page is loaded,the file will be read, the number will be increased by one and the newnumber will be saved to the same file. Counter.php <?php //The file where number of hits will be saved; name may be changed;p.e. "/counter_files/counter1.txt" $counterfile = " counter.txt "; // Opening the file; number of hit is stored in variable $hits $fp = fopen($counterfile,"r"); $hits = fgets($fp,100); fclose($fp); //increading number of hits $hits ++; //saving number of hits $fp = fopen($counterfile,"w"); fputs($fp, $hits ); fclose($fp); //printing  hits; you may remove next lin...

Italics in Html

The italics tags use to highlight the fonts but not like bold it makes your font just like dance a step. These tags are not intended to to style your font. It's use to emphasize your fonts. Code: Italic <i>tag</i>! <em>Emphasized</em> Text! Example: Italic tag ! Emphasized Text! Code: <b>HTML</b> <i>Hyper Text Markup Language</i>  or <b>HTML</b> <em>Hyper Text Markup Language</em> Example: HTML Hyper Text Markup Language or HTML Hyper Text Markup Language Code: <p>Johnson is <b><i>DR.</i></b></p> Example: Johnson is DR.