Posts
Abbreviation or Acronym in Html
- Get link
- X
- Other Apps
ð The<abbr> tag defines an abbreviation or an acronym, like"HTML", "CSS", "Mr.","Dr.", "ASAP", "ATM". ð Use the Title attribute to show the description for the abbreviation/acronym when you mouse over the element. Example : <p> welcome to <abbr title=”coding Wala”> CW </abbr> channel </p> Code : <!DOCTYPE html> <html> <head> <title>Coding wala</title> </head> <body> <h1><abbr title="coding wala">CW</abbr> is my channel</h1> </body> </html>
Bold and italic Tag in html
- Get link
- X
- Other Apps
Bold : This Tag is use to bold the text. Example : <b> Coding Wala</b> . Italic : This Tag is use to show text different in your web page Example : <i> Coding Wala <i> . Code : <!DOCTYPE html> <html> <head> <title>coding wala</title> </head> <body> this is <b>coding wala</b> channel <br> this is <i>coding wala</i> channel </body> </html>
Aline Attribute in Html
- Get link
- X
- Other Apps
Center : Aligns Word in center of web page Example : align = ”center ” . Left: Aligns Word in Left of web page Example : align = ”Left ” . Right : Aligns Word in right of web page Example : align= ”Right” . Justify : Justifies whole text of web page Example : align = ”justify” . Use of Aline tag · With <li> List tag Example : <li align=”right”> · With <hr> horizontal Rule Tag Example : <hr align=”left”> · With <p> paragraph Tag Example : <p align=”Right”> Code : <!DOCTYPE html> <html> <head...