What is CSS?
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...