plzzz solve thiss 79 to 89
Attachments:
y21pandey:
bhsdk 5 point me 10 question
Answers
Answered by
12
79. it's the property to set the image in the webpage as the background. the background image of an element can be set like this -
<body style="background-image:image url;">
</body>
80.
81. to change the color of the font, use the following code :-
<h1 style="font-color:blue;"> ABCD </h1>
82. style
h1 {
font-weight:bolder;
}
use lighter for lighter font.
u can also use numbers.. increase number for bolder font.
83. style
h1 {
text-decoration;overline;
}
84. <head>
<LINK REL=StyleSheet HREF="style.css" TYPE="text/css">
</head>
PS - first make a file for css and then add to your editor.
85. attributes like 'id' and 'class' are used.
use hastag(#) for id and . for class.
u can use class multiple times.
example :-
<h1 class="brainly">
</h1>
in style sheet u can use like this :-
.class {
font-color:red;
}
anything u wanna change.
86. I guess universal selector.
87. the error is didn't use ':' after text-align and color. instead ';' is used.
the right code is -
h1{ text-align:center; color: blue;}
p{color:black; font-family:"Comic sans MS"; fontsize:16px;}
also px is not used for size.
I know only this much bro... sorry :((
<body style="background-image:image url;">
</body>
80.
81. to change the color of the font, use the following code :-
<h1 style="font-color:blue;"> ABCD </h1>
82. style
h1 {
font-weight:bolder;
}
use lighter for lighter font.
u can also use numbers.. increase number for bolder font.
83. style
h1 {
text-decoration;overline;
}
84. <head>
<LINK REL=StyleSheet HREF="style.css" TYPE="text/css">
</head>
PS - first make a file for css and then add to your editor.
85. attributes like 'id' and 'class' are used.
use hastag(#) for id and . for class.
u can use class multiple times.
example :-
<h1 class="brainly">
</h1>
in style sheet u can use like this :-
.class {
font-color:red;
}
anything u wanna change.
86. I guess universal selector.
87. the error is didn't use ':' after text-align and color. instead ';' is used.
the right code is -
h1{ text-align:center; color: blue;}
p{color:black; font-family:"Comic sans MS"; fontsize:16px;}
also px is not used for size.
I know only this much bro... sorry :((
Similar questions