Posts

Showing posts from March, 2025

What is CSS?

Image
  What is CSS? CSS stands for cascading style sheet. Through CSS, we can design our web pages more attractively. There are three styles of CSS in HTML inline, internal, external ·          Inline:  Inl                          inline style used in HTML element. Example: <html> <head><title> my first page</title> </head> <body > <p style="text-align: center; color: red">hello</p> <p><font color="green">hello</p> </form> </html>   ·          Internal:                           Inte rnal style uses the <style > element in the < head> section of HTML. Example: <html> <head> <style> body {background-col...

Frame tag and Example

Image
  Frame tag  Elements of frame tag The <frameset> tag provides us with the facility to divide our windows into multiple sections and each section has the same capability to execute individually. Attribute rows:  Rows divide our window into rows and the format of division is  <frameset rows=”50%,*”> or<frameset rows=”50%,50%”> Cols:  Cols divide our window into columns and the format of division                is  <frameset Cols =”50%, *”>   or <frameset Cols =”50%,50%”>   Border: Border provides border format at a pixel rate. Example:                                     <frameset border="1> <frame> tag: The frame tag provides a window frame with the src attribute. Attributes:  src: Src provides the URL of the to-be e...