Wednesday, October 30, 2019

HTML Tutorial

   
                   HTML Basic Format
begin tag,
<html>
<body
Md.Habibul Bashar
Web Software Developer 
Cell : 01732999353
 end tag
  </body     
</html>
At first contain begin tag, at last contain end tag  
 
Result : 
 
Md.Habibul Bashar
Web Software Developer 
Cell : 01732999353 

      
Background Color

<h1 style="background-color:rgb(255, 0, 0);">rgb(255, 0, 0)</h1>
<h1 style="background-color:rgb(0, 0, 255);">rgb(0, 0, 255)</h1>
<h1 style="background-color:rgb(60, 179, 113);">rgb(60, 179, 113)</h1>
<h1 style="background-color:rgb(238, 130, 238);">rgb(238, 130, 238)</h1>
<h1 style="background-color:rgb(255, 165, 0);">rgb(255, 165, 0)</h1>
<h1 style="background-color:rgb(106, 90, 205);">rgb(106, 90, 205)</h1>

Border Color

<h1 style="border:2px solid Tomato;">Hello World</h1>

 Font Color

<font color="red">This is some text!</font>
 
  • <b> - Bold text
    </b>
  • <strong> - Important text</strong>
  • <i> - Italic text
    </i>
  • <em> - Emphasized text
    </em>
  • <mark> - Marked text
  • <small> - Small text
  • <del> - Deleted text
  • <ins> - Inserted text
  • <sub> - Subscript text
  • <sup> - Superscript text

    HTML Links - Syntax

    <a href="url">link text</a>
     
                             More Details Web Link  :  
     
     

     

 

No comments:

Post a Comment