Assignment 3 – HTML Programming
1. Which attribute allows you to change the style of numbers in an ordered list? 2. Which heading element gives the most prominent heading? 3. Write names of two attributes each of the following tags: a. b. 4. Identify which of the following is a tag or an attribute: a. HR b. align c. BR d. P e. NOSHADE f. LINK 5. Write an HTML code to create the following ordered list Fruits I have: C. Apple D. Oranges E. Grapes 6. Write the HTML code for the following in the space provided: a. A normal sized heading with the text “LOYOLA HIGH SCHOOL” b. The largest size heading which is bold , “PETER PAN” c. A blue colour horizontal line across the page 7. Find error(s) in the following HTML code segment. Rewrite the correct code and underline the corrections made. to find errors- Water Bottles
- Lunch Box 8. 6CO2 + 6H2O---C2H12O2 +6O2 Write the HTML code to display the following chemical expression on the web page 9. Shiv is doing a school project based on HTML. His HTML file is getting saved as a text document, therefore, he cannot view his project through the browser. Find the error. 10. Find the errors in the following HTML code and write the correct code:
Answers
Answer:MAKE ME BRAINLIEST FOR THIS
- Type attribute
- H1
- a. color and size b. bgcolor and link
- a.tag b. attribute c. tag d. tag e. and f. attribute
5.(write body etc on your own i am writting for the text written)
<p>Fruits I have:</p>
<ol type = "A" : start = "C">
<li>Apple</li>
<li>Orange</li>
<li>Grapes</li>
<ol>
6.a.(I dont know what normal size is, maybe h3 or 4)
b.<h1><b>PETER PAN</b><h1>
c.<Hr color = blue>
7.Mistakes
title is not ended , end head , all the stuff from ul to ul end has to be written in body, the attribute of ul has to be written like type = square (not supported in html5) , <li> is not ended , </ul> instead of </ol> and end body,html
8. <p>6CO<sub>2</sub> + 6H<sub>2</sub>O---C<SUB>2</SUB>H<SUB>12</SUB>O<SUB>2</SUB> +6O<SUB>2
</SUB>
9.He has to save it with the extension of .html
10.head is not ended, the first title tag is wrong (remove /), write road safety rules in <p> and </p>, the list to be used should be ol , its not <L>, its <li> and </li> , end ol and end body
MAKE ME BRAINLIEST FOR THIS
Explanation:
Answer:
Choose the correct tag(s) to make the text "EXAM" Bold and Underlined.