Fill in the BLANKS with proper code and then copy the code into a source code ed
ID: 3590466 • Letter: F
Question
Fill in the BLANKS with proper code and then copy the code into a source code editor (ex. Notepad++) and make it work! (Feel free to improvise for a unique look, all your own!)
Fill blanks in the following HTML and JavaScript program. Sketch the web page and discuss how this page works:
<html>
<head>
<title>CSS Assignment</title>
<style type="___BLANK___/css">
h1 {font-size:medium;}
h3 {color:#FF0000;}
p.important {background___BLANK___:#FFFF00;}
p.large {font___BLANK___:large;}
.myColor {color:#FF0000;}
___BLANK___
</head>
<body>
<h1>Welcome to CSS!</h1>
<h3>CSS: <___BLANK___>Cascading Style Sheet</b> describes the document presentation semantics.</h3>
<p class="important">One can highlight parts of the Web page based on a criterion across the entire Web page.</p>
<p class="___BLANK___">Or, one can set a particular font for a type of paragraph across the entire Web page.</p>
<p class="___BLANK___">The color of this line is "myColor."</p>
<div ___BLANK___="___BLANK___-color:#00FFFF;fontfamily:Arial;fontsize:large;">
<p>One can also<u>divide</u> the Web page into blocks.</p>
<p>(Note: #FF0000 is Red. #FFFF00 is Yellow. #00FF00 is Green.)<___BLANK___>
<___BLANK___>
</body>
</html>
Explanation / Answer
<html>
<head>
<title>CSS Assignment</title>
<style type="text/css">
h1 {font-size:medium;}
h3 {color:#FF0000;}
p.important {background-color:#FFFF00;}
p.large {font-size:large;}
.myColor {color:#FF0000;}
</style>>
</head>
<body>
<h1>Welcome to CSS!</h1>
<h3>CSS: <b>Cascading Style Sheet</b> describes the document presentation semantics.</h3>
<p class="important">One can highlight parts of the Web page based on a criterion across the entire Web page.</p>
<p class="large" >Or, one can set a particular font for a type of paragraph across the entire Web page.</p>
<p class="myColor">The color of this line is "myColor."</p>
<div>
<p>One can also<u>divide</u> the Web page into blocks.</p>
<p>(Note: #FF0000 is Red. #FFFF00 is Yellow. #00FF00 is Green.)</p>
</div>
</body>
</html>
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.