151k views
4 votes
The questions are in the pictures, i basically have to create a web page, drop the html code and files below thank you.

The questions are in the pictures, i basically have to create a web page, drop the-example-1
The questions are in the pictures, i basically have to create a web page, drop the-example-1
The questions are in the pictures, i basically have to create a web page, drop the-example-2
The questions are in the pictures, i basically have to create a web page, drop the-example-3
The questions are in the pictures, i basically have to create a web page, drop the-example-4
User Rholmes
by
5.1k points

1 Answer

3 votes

This contains pretty much what you need:


<!DOCTYPE html>



<html>


<head>


<meta charset="utf-8" />


<title>The Page Title</title>


</head>


<body>



<h1>First paragraph</h1>


<p>This is a paragraph of text.</p>


<h2>Second level paragraph</h2>


<p>


Here is an unordered list of options:


<ul>


<li>First</li>


<li>Second</li>


<li>Third</li>


</ul>


Here is another unordered list of options:


<ul>


<li>First</li>


<li>Second</li>


<li>Third</li>


</ul>


Here is an ordered list of options:


<ol>


<li>First</li>


<li>Second</li>


<li>Third</li>


</ol>


</p>


<h4>Third level</h4>



</body>


</html>

The questions are in the pictures, i basically have to create a web page, drop the-example-1
User Sean Eagan
by
5.2k points