0
2.2kviews
Write a CSS for HTML page for (i) Set the background color (ii) Set the size of font (iii) Create a hyperlink without an underline.
1 Answer
0
245views
  • The background-color property set the color of web page.
  • Elements ‘b’ and ‘p’ are used to set different font sizes.
  • The text-decoration property is used to remove underlines from hyperlink.
  • Program :
<!DOCTYPE html>
<html>
<header>
<title>CSS Example</title>
<style>
body { background-color: lightblue;}
b { font-size: 20px;}
p { font-size: …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.