Computer Applications
Which HTML attribute is used to define inline CSS styles ?
- css
- style
- type
- id
CSS
1 Like
Answer
style
Reason — STYLE attribute is used to define inline CSS styles. For example,
<H3 STYLE = "FONT-FAMILY = ARIAL">
Answered By
2 Likes
Related Questions
Which is the correct CSS syntax ?
{p:color=black(p}p {color: black;}{p;color:black}p:color=black
What is the correct CSS syntax to change the font name ?
- font-name:
- font:
- font-family:
- fontname:
How do you make each word in a text start with a capital letter ?
- text-transform:capitalize
- text-transform:uppercase
- You can't do that with CSS
- text:capitalize
What is the correct CSS syntax for making all the
<p>tag's font size 14px ?p {14px}p {font-size: 14px;}p {text-size: 14px;}p {font: 14px;}