Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

WILL RATE LIFESAVER FOR BEST ANSWER!!!! DUE @ 12MIDNIGHT!!! In thefollowing list

ID: 3613104 • Letter: W

Question

WILL RATE LIFESAVER FOR BEST ANSWER!!!! DUE @ 12MIDNIGHT!!!

In thefollowing listing, gaps are labeled with Greek letters. Theseletters are repeated after the listing with descriptions of thecode that goes into the corresponding gaps. You there supplythe missing code. In the space below the descriptions forthe missing code, write the stylesheet prob1.css.

<html>

<head>

<title>Final, Problem1</title>

<link_a_________________________________________________>

</head>

<body>

<h2>Scripting</h2>

<ol _b_______>

    <li>Go to<a _g________>JavaScript</a></li>

    <li>Go to<a _d_________>PHP</a></li>

</ol>

<p_e_____________>

    Client-sidescripting allows us to modify the document that

    is rendered. It also allows us to capture and modify information

    from the user.

</p>

<p_z______________>

    Server-sidescripting allows us to produce HTML documents

    dynamically. It also allows us to process information

    obtained fromrequests from the client

</p>

_h___________

<h4style=_q____________>JavaScript</h4>

<ul>

    <li>The<em>standard</em> language for client-sidescripting</li>

    <li>Syntax issimilar to C/C++,</li>

</ul>

_i____________

<h4>PHP</h4>

<ul>

    <li>Ascripting language</li>

    <li>Its mostcommon use is server-side scripting</li> </ul>

<h4>ConcludingRemarks</h4>

<p>

    Scripting is anessential feature of the World Wide Web. Whether

    on the side of theclient or on the side of the server, it

    requiresprogramming ability.

</p>

</body>

</html>


a: Supply the attributes so that this link elementreferences the stylesheet prob1.css.

b: Supply the attribute so that uppercase letters are used aslabels on the items in this ordered list

g: Specify a link to the internal location named js.

d: Specify a link to the internal location named php.

e: Specify that the class of this element is leftbox.

z: Specify that the class of this element is rightbox.

h: Give the name js to this location.

q: Supply a value for the style attribute so that the contentof this element does not flow around the previous element, whichfloats right.

Explanation / Answer

b) <ol type=A>