Thursday 28 September 2017

CSS

➤ CSS stands for Cascading Style Sheets.
➤ CSS gives attractive look to the websites or Webpages.
➤ External style sheet stored in css file.

 Types of CSS
CSS is deffine on three types. 
  1. External CSS
  2. Internal CSS
  3. Inline CSS.  
 External CSS 
In This type of CSS file, We can joint External CSS to web pages with a link. For this we create the web page and in this web page gives a link to CSS file. 
The location of this link is in the web pages <head> tag. and the code is 
        <head>      <link rel ="stylesheet" type = "text/css" href = "style.css">  </head>
where style.css is the name of the External CSS file. 
Internal CSS
 An Internal style sheet should be used when a single document has a unique style.You deffine   Internal styles in the head section by using <style> tag,
Example :            
                               <head>
                                  <style type=text/css>
                                      hr{color:blue;}
                                      p{margin-left:20px;}
                                 </style>   
                             </head> 

 Inline CSS
Use the method sparingly, such when a style is to be applied to a single occureence of an element.
we gives css with in HTML code is called Inline CSS. 
 Example : 
                    <body style=" border 1px solid #333; margin:50px;"
                   < p style="color:black; margin:20px;">
                  This is a paragraph.
                  </p>
style=" border 1px solid #333; margin:50px;"
style="color:black; margin:20px;"                                      is called Inline CSS 

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 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 .


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.