relatlonship with our clients by oftering personalized services that 1isten to t
ID: 3884318 • Letter: R
Question
relatlonship with our clients by oftering personalized services that 1isten to their needs, develop their target areas, and incorporate these items into a website that works. y) Hands-On Exercises Write the HTML for a paragraph that uses inline styles to configure the background colorofgreen and the textcolorofwhite. Write the HTML and CSS code for an embedded style sheet that configures a back- ground color of eaeaea and a text color of #000033. Write the CSS code for an external style sheet that configures the text to be brown 1.2em in size, and in Arial, Verdana, or a sans-serif font. write the HTML and CSS code for an embedded style sheet that configures a class called new that is bold and italic. 52 write the HTML and CSS code for an embedded style sheet that configures links with out underlines; a background color of white;text color of black; is in Arial, Helvetica, or a sans-serif font; and has a class called new that is bold and italic. 6, Write the CSS code for an external style sheet that configures a page background color of #FFF8DC; has a text color of #000099; is in Arial, Helvetica, or a sans-serif font; and has an id called new that is bold and italic. 7. Practice with External Style Sheets. In this exercise, you will create two external style sheet files and a web page. You will experiment with linking the web page to the exter- nal style sheets and note how the display of the page is changed. a. Create an external style sheet (call it format1.css) to format as follows: document background color of white, document text color of #000099, and document font family of Arial, Helvetica, or sans-serif. Hyperlinks should have a background color of gray ( cccccc) . Configure the h1 selector to use the Times New Roman font with red text color.Explanation / Answer
I hope u are expecting answers only forr marked
Below are the answers
1) <p>paragraph text</p>
2) <html>
<head>
<link rel="stylesheet"href="sty1.css">
</head>
<body>
<p>This is a paragraph.</p>
</body>
</html>
Sty1. Css
p {
Background-color: #eaeaea;
Color: #00033
}
3)
<html>
<head>
<link rel="stylesheet"href="sty1.css">
</head>
<body>
<p>This is a paragraph.</p>
</body>
</html>
Sty1. Css
P {
color: brown;
font-family: verdana;
font-size: 1.2em;
}
4)same html code as above
Except below tag
<p class="pclass"></p>
sty1. Css
#pclass {
font-style: italic, bold;
}
5)sty1.css
a:link {
text-decoration: none;
Background-color:"white";
Color:black;
font-family: "arial";
}
. New
{
Font-style: italic, bold;
}
6)
body {
background-color:#fff8dc;
Color:#000099;
Font-family:"arial";
}
#new
{
Font-style: italic, bold;
}
7)c)
<html>
<head>
<link rel="stylesheet"href="format1.css">
</head>
<body>
<h1>Matrix movie</h1>
<ul>
<li>hero</li>
<li>heroine</li>
<li>villain</li>
</ul>
<p>This is a paragraph. About movie</p>
Write to me: <a href="mailto:hdhb@hdhdhh.com>hdhhsv</a>
</body>
</html>
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.