Will the "My title" header be printed in italics?
Suppose you have the following HTML web page implemented:
<!DOCTYPE html> <html> <head> <style> h1.makemered { color:rgb(255,0,0); font-style: italic; } </style> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <h1 class="makemered" style="color:rgb(0,0,255)">My title</h1> </body> </html>And you have the following external CSS stylesheet (style.css) implemented:
h1.makemered { color:rgb(0,255,0); }Will the "My title" header be printed in italics?
Please select exactly one correct alternative.
Answer
The priority order is, generally speaking, from low to high:
- External style sheet
- Internal style sheet (in the head section)
- Inline style (inside an HTML element)
No comments:
Post a Comment