Posts

Showing posts from May, 2022

HTML Programming

Image
HTML Programming  (Hyper Text Markup Language ) Hyper - representing the next location.  eg: about contact etc  Text- collection of character no. and special symbols.     Markup- library that contains the definition of all tag.  HTML Points 1. Code Based Language - based on code.(c , c++, java, html etc) 2. Form Based Language - Based on tools system. (.NET , framework, netbeans etc ) 3. HTML cannot use any compiler , it directly operates on web browser. 4. HTML is not a case sensitive language (capital and small both are supported) HTML Structure Symbol :- < > (tags) eg. <b>, <u>  Types Of  Tags 1. Open Tag - tag symbol is used only one time < > 2. Closed Tag - Tag symbol is used 2 times <> </> eg. <b> </b>     <u> </u> HTML Syntax <html> <body>  all tags  </body> </html> HTML Tags <font>:-IT is used to display information <hr>:-It ...