Home » » Start Learning Web Designing - Basics of HTML [ Day 1 ]

Start Learning Web Designing - Basics of HTML [ Day 1 ]

Written By Admin on November 24, 2013 | 10:43:00 am

 
Start Learning Web Designing - Basics of HTML
    From Today We are starting to provide you How to start web designing & development .Before going to start in web design you must know which languages are used to create web pages.There are so many options of languages are available today.Some of these are HTML, XHTML,  XML , CSS, PHP, AJAX, ASP and much more PHP & ASP are mostly used for making dynamic webpages.Dynamic Webpages are those whose contains are changed dynamically while HTML ( HyperText Markup Language ) used for making static pages.
    Everything in HTML are in form of Tags.Tags are nothing but some formal syntax used in HTML for different functions.Tags made up of two forms.One is for opening tag and Second one is closing tag.Tags are enclosed by < ( less than ) and > (greater than). for ex: <html> & </html>.To write html document, you need any of text editor.A simple Notepad is enough but if you need more options and functionality prefer Adobe's Dreamweaver.
 
 Lets start -now we create basic html page:-
  1. Open any text editor you have ex. Notepad
  2. Write following code as it is in in
    <html>
    <head>
    <title>TheTechDigit.Com </title>
    </head>
    <body>
    Welcome to HTML
    </body>
    </html>  
  3. Save the document as web.html  ( .html is required because it tells that it is html document
  4. Open that file in your browser.
  5. It is your first webpage , ultimately your entry in web designing

Code Explaination :
As we know that with every open tag of html , there is closing tag.

Line NoMeaning
#1 <html> tells that it is open of any html document
#2 <head> tells that head section , in which properties of webpages are written.
#3 <title>page title</title> tells that a title of webpage. That reflects on title bar of a
 web browser
#4 </head> tells that end of head section.
#5 <body> tells that body section.whatever you want to display in a web browser, it must be
written in body section
#6 Actual data we want to display goes here.ex 'Welcome to HTML'
#7 </body> tells that end of body section
#8 </html> tells that end of html document

Keep visiting our blog for next tutorials
Photo by comerecommended.com

Follow us