Sunday, June 22, 2014

Complete Course of Learning HTML-2

We already have written HTML.It was like this
                                                                                            
    <html>
    ↓<body>
    <p>This is my first code</P>
    </body>
    </html> 




Here <html>,<body> and <p> are html tag(called opening tag) & </p>,</body> and </html> are also html tag(called ending tag).It is very important to remember that every html tag has a opening and a ending tag(without some exception).And when you write a opening tag,you have to write it`s ending tag also.If you do not write this,your code will never give you correct output result.So,we always remember that.Now we  discuss about html tag.It is most important to learn html.so,let`s start...

HTML Tags

Tags are very important for learning and writing html code.Html code is written by these tags.Now we discuss about various html tags.

1.html tag : This is the first tag.when we write html,we have to first write <html>.So it is the first tag and it is the last tag also.Please look at the code given below....


                                                                                            
    <html>
    ↓<body>
    <p>This is my first code</P>
    </body>
    </html> 



Here we see html document is situated between the <html> and </html> tag.So always remember that all html tags or html document is covered with the <html> and </html> tag.

2.Head Tag:  It is situated under html tag. we can divided html document between two parts.These are

>>Head Section-This section is made of head tag.Title tag,meta tag,link tag,base tag,style tag and script tag are the parts of head tag.If we use these 6 tags,we have to must use these under head tag.We of course describe about the 6 tags later.


>>Body Section-All headings,paragraphs,images,videos all are included in this section.


we discuss about all tags with example step by step.

Example 1

<html>
<head>
<title>This is joy from Bangladesh.</title>
</head>
<body>
<h1>Do You Understand?</h1>
</body>
</html>

save this file as a joy.html and open it with any browser like chrome,Firefox or internet explorer and see the output result.


Thursday, June 19, 2014

Complete Course of Learning HTML-1

Hi Friends! Today i will discuss about basic html.You know it is the most essential skills which is of course need everyone who want to be a WEB DEVELOPER or a GRAPHIC DESIGNER.If you want to learn CSS /PHP/JAVA SCRIPT or any other programming language or want to build up your career as a ad poster,there is no alternative way except HTML.

The meaning of HTML is Hyper Text Markup Language.Actually here we can learn basic practical html.so,i avoid theoretical discussion.


  Tools Need to Learn

You have no need to collect any additional tools to learn & practice HTML.Notepad is very common tool which is available to every operating system.You can use this tool primarily to learn html.Many advanced developer / user uses Dreamweaver , Notepad+ and other html editor.But ithink at first Notepad is best for the beginner.You can find/get this clicking your computers Start Button....

Start>All programs>Accessories>Notepad 

Windows 7 users can find clicking computers Start Button & then typing notepad in search box.You can create  shortcut to desktop for use quickly.


Now we are ready to write html code.please follow the steps given below...

step-1
√√open notepad & write mathematical sign less than(<) and                 greater than(>)together.Actually all html  elements have to               keep between the less than(<)and greater than (>) sign.write             the same given below.

<html>
<body>
<p>This is my first code</P>
</body>
</html>

And save it a file named index.html.For this,go to file and click save as and when show a dialogue box save as,write index.html and click save.Now we analysis the above code.

 We see all html element(<html>) is situated between the less than and greater than sign or left angel bracket and right angel bracket.

    <html>          <head>          <body>     
                               
  Less than   greater than     
  left angel   right angel
    bracket        bracket

                                 
Less than   greater than
 left angel   right angel
    bracket        bracket
                         ↑        
Less than   greater than
 left angel   right angel
    bracket        bracket

Here <html> is a tag.It is called opening tag.Now we have to learn html tag .An html element is start with a opening tag and close with a closing tag.That means every html element has a starting tag and a closing tag. so, it is necessary to know that when we will write, we will must close the closing tag.Examples..
                       


(opening /starting tag)
(closing/ending tag)
<html> This is a tag.
</html> This is a tag.
<head>This is a tag.
</head> This is a tag.
<body> This is a tag. 
</body>This is a tag.
<p> This is a tag.       
</p> This is a tag.       
Now we are clear that <html>,<body> and <p> are opening tag and </html>,</body> and </p> are closing tag.And the middle part between <p> and </p> is html element content.
Actually an html content is everything from the opening  tag to the closing tag.Always remember html code start with <html> tag and end with the </html> tag.please be attention to the given example below...


<html>
    
    ↓<body>
    <p>This is my first code</P>
    </body>
   
</html>
                                                                                                                                                          
so,we have written  html code.open the saved file named index.html with any browser like chrome,Mozilla Firefox etc.You will see the output   result like

"Top 10 Strategies to Increase Your YouTube Subscribers"

  Increasing YouTube subscribers requires a combination of effective content creation, optimization, promotion, and audience engagement. Her...