CSS Questions
-
Part of a website's code is shown below
<head> <title>Orville's Oranges</title> <link rel="stylesheet" type="text/css" href="mainStyle.css"> </head>Explain the meaning of the code
The code sets the page's title (as shown in the browser) to
Orville's Oranges. It also loads the stylesheetmainStyle.cssand applies it to the page. -
The site also contains the following code.
<div class="offer">All oranges 50% off.</div>Complete the CSS code that would make any
divelements of the classofferhave an orange border..offer { border-style: solid; border-color: orange; }