Monday 11 September 2017

HTML

HTML stands for "Hyper Text Markup Language". HTML used to create a static Web page.The Combination of Static web pages is called static website. There are no Database Connectivity.
It's not a case sensitive .We can Connect two Web pages with use of Link. Tags is important Part in HTML.
There are Two Types of HTML Tags :
1. (a) Open tag (<html>) . call start tag.
    (b)Close tag (</html>). call end tag.
2. Empty tag (<br>).
html tags
HTML Tags


It's a basic lavel to Know about Websites. Websites are two Type:
1. Static website      :      These type of Website create on html.
2. Dynamic website :     These type of Website create with database connectivity.

 In the static website, You can manage data Staticly, because there is no database connectivity.

 In the Dynamic website, You can manage data dynamically, because there is database connectivity.
                        

How can write html codes?

HTML is not a programing language. it is a set of code that defines the content of a web page so that they can be displayed by the web browser. To write html code , we need code Editior like Notepad , Notepad++ , Sublime , Dreamweaver etc.

Step :1  Open  Code Editior .

Step :2    Write codes 
       Syntax:      The basic HTML syntax shown on below.

     <html>
       <head>
        <title>
                 Page title
        </title>
       </head>
       <body>
                  Body content      (  e.g. Hello world )
       </body>
       </html>

Step :3

 save this file with Extension ( .html ). for example : File.html .



                                    Table in HTML

 Table is another Important Part in HTML. In HTML Table you can arrange the Data like text ,     images , links etc.
  

How to Create Table in HTML ? 

we can create table in HTML with using of  table tag like (<table>). Important Parts of Table is shown below.
HTML Table

1. Table header       ( <th> ).
2. Table Row          ( <tr> ) .
3  Table coloum      ( <td> ).

<html>
<head>
   <title> Create table </table>
</head>
<body>
<table border 1px>
  <th>Name </th>
   <th>Work</th>
     <tr>
       <td>Akash</td>
         <td>Software engineer</td>
     </tr>
      <tr>
         <td> suraj </td>
           <td> Web developer </td>
      </tr>

</table>
</html>


   save this file with Extension ( .html ). for example : File.html .

                    

1 comment: