Sunday, January 23, 2011

Requirements for HTML/CSS Designer


Things that should be installed in your PC.

1. For new users  it could be any notepad.
2. For advance users Dreamweaver is a good tool.
3. Some  Photoshop knowledge is  essential. Don't worry I am here to guide you.
4. Adobe Photoshop  is a must.











Category-2 tags

Category-2 tags

various tags that are used within the <body></body> tag to
format the web page. Such tags are..

1. <p> for paragraph</p>
2. </br> for breaking the lines
3. Heading tags:
   i) <h1>heading1</h1>
  ii) <h2>heading1</h2>
 iii) <h3>heading1</h3>
  iv) <h4>heading1</h4>
   v) <h5>heading1</h5>
  vi) <h6>heading1</h6>
4.<b> to make the text bold</b>
5. Similarly many more tags are used which you could find
   from any site available. Such are
  
   <i><i>,
   <sub></sub>
   <img></img>
   <a></a>
   and many more...

 The use of each tags would be described later in my posts.

Because I don't want to make you people bore just by giving
introduction of each tags. so what i do from now onwards. I
will describe about the tags whenever it comes during the
tutorial. Is it ok? yeah.. I hope so..and don't mind i answer the same
from your side also.

So Be ready for some-thing interesting for you in my next blog..

Thanx for your patience...

P K UNDWAR

Basics Of Html/Css

Introduction Of Tag: Tag is simply used as an Html element or code by which you can define what you want from your codes to deliver in your webpages. These are simply be written within the angle braces like {}.

for example: if somebody wants to write text in bold, he can simply use the <b> some text </b>. whereas <b></b> is the tag which is used to make the text in bold.

Basic Html tags are easily available on various sites but the important ones that are needed is :

CATEGORY - 1

Category-1 tags are essential tags. That means these tags are used in any HTML WebPage. Without use of these tags no webpage creation is possible. So, remember these four basic tags are for lifetime, if you want to be an Html Designer.


1. <html></html>
2. <title></title>
3. <head></head>
4. <body></body

CATEGORY - 2

Category-2 tags are although essential tags but are used whenever required. The very Important point regarding Category-2 tags is It can only be used within the body tag. The Description of the category tags followed in my next blog.

The Basic Structure of a web page is:

<html>
<title>my webpage</title>
<head> This is my webpage </head>
<body>
anything written with body tag is displayed in your webpage. so, this tag has great importance. All the Category-2 tags are used within the body tag like..

<p> paragraph could be written in p tag. </p>
</body>
</html>