+ 3
How to increase font size in html and add background ? Plz answer
3 Respuestas
+ 5
HTML:
<p id="txt">Hey there</p>
CSS:
#txt{
font-size:[insert number]px;
}
+ 5
HTML
<p> Hello World </p>
CSS
body{
background-image:url('...'); or
background-color: whitesmoke;
}
p {
font-size: large; or 100%; or 50px;
}
0
<body style="font-size:30px;">
<body style="background-color:red:">