+ 1
How do i put a background color...-
I'm new with Html. #1.Can someone tell me how to put in the background color? #2.How do i put in colored text Thank You... It would really help!
6 Antworten
+ 3
<html>
<head>
<title>Title Here..</title>
</head>
<body bgcolor="green">
</body>
</html>
+ 2
<html>
<head>
<title>Title Here</title>
<style>
body{
background-color:#123456;
color:#654321;
}
</style>
</head>
<body>
This is inside body.
</body>
</html>
+ 1
background-color: #000000;
color: red;
+ 1
after background-color: #, does it always have to be #000000
color:red
+ 1
for colored text:
<!--Can be any color you want-->
<p color=red> </p>
0
no it is only an example of background and font color selectors in CSS