Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Tuesday, 12 September 2017

HTML Tags

Headings :    
Headings are defined with <h1> to <h6> tags . <h1> defines the largest heading.
<h6 > defines the smallest heading.
   
    ➤ <h1> This is Heading</h1>
    ➤ <h2> This is Heading</h2>
    ➤ <h3> This is Heading</h3>
    ➤ <h4> This is Heading</h4>
    ➤ <h5> This is Heading</h5>
    ➤ <h6> This is Heading</h6>  

Paragraphs :
Paragraphs are defined with <p> tag.

    ➤ <p> This is Paragraph</p>  
   
Line Breaks :
It's defined with <br> tag. it's empty tag.

    ➤  This is Paragraph <br> .
  


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 level to Know about Websites. Websites are two Type:
1. Static website      :      These type of Website create on html without database connectivity.
2. Dynamic website :     These type of Website create with database connectivity.

 In the static website, You can manage data Statically, 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 Editor like Notepad , Notepad++ , Sublime , Dreamweaver etc.

Step :1  Open  Code Editor .

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 .


Saturday, 9 September 2017

What is web designing?

web designing
Web designing
It is use to create web pages and the combination of web pages is done as a static websites. Web design encompasses many different skills and disciplines in the production and maintenance of websites. The different areas of web design includeweb graphic design; interface design; authoring, including standardised code and proprietary software; user experience design; and search engine optimization.