Before you begin work on creating web pages, it is important for you to select a
ID: 3557991 • Letter: B
Question
Before you begin work on creating web pages, it is important for you to select a theme for your website so that your final project has a cohesive look. You may choose any theme you like. Some ideas for themes include the following:
Yourself
Your hobby
Your favorite sports team
Your favorite musical act
Once you have selected a theme, you can start creating several static web pages. Note that WYSIWYG editors are not allowed for this Application. You will write HTML tags yourself to create your own website.
You will perform the following tasks:
Create a static website consisting of two or more pages using HTML.
Apply basic HTML tags, such as hyperlinks, images, and forms, toward the development of a website.
Place the images in a subdirectory called
Explanation / Answer
page01.html:-
<html>
<title> Assignment 1 solution 3 </title>
<body bgcolor="#A9A9A9">
<form action="file:///E:/eBooks%20&%20pdfs/Internet%20Technology%20Lab/Assignment%201%20solutions/Sol%203extended.html" method="post">
First Name: <input type="text" name="FirstName" size="20" maxlength="30"> <br>
Last Name: <input type="text" name="LastName" size="20" maxlength="30"> <br>
Email id: <input type="text" name="Email" size="30" maxlength="40"> <br>
Password: <input type="password" name="Password" size="20" maxlength="30"> <br>
Gender: <input type="radio" name="sex" value="male"> Male <br>
<input type="radio" name="sex" value="female"> Female <br>
Level Of Education: <input type="radio" name="Education" value="postgraduate">Post Graduate <br>
<input type="radio" name="Education" value="graduate">Graduate <br>
<input type="radio" name="Education" value="higher secondary">Higher Secondary <br>
<input type="radio" name="Education" value="matriculate">Matriculate <br>
Country: <select name="country">
<option> India </option>
<option> China </option>
<option> Pakistan </option>
<option> Others </option>
</select>
<br>
Areas of interest: <br> <input type="checkbox" name="Interest" value="academics"> Academics <br>
<input type="checkbox" name="Interest" value="sports"> Sports <br>
<input type="checkbox" name="Interest" value="others"> Others <br>
Submit: <input type="submit" value="Submit">
Reset: <input type="reset" value="Erase everything">
</form>
<p> <b> Now you have a table. </b> <br>
<table>
<tr> <td> Row 1 Cell 1 </td>
<td> Row 1 Cell 2 </td>
</tr>
<tr>
<td> Row 2 Cell 1 </td>
<td> Row 2 Cell 2 </td>
</tr>
</table>
<a href="C:UsersUserDesktopcheggpage02.html"> Redirecting you to the other page.
</body>
</html>
page-02.html:-
<html>
<body>
<h1 align="center">Thank you! <br>
<h3 align="center">Your response has been recorded. <br>
<br>
<form>
Name: <input type="text"> <br>
Surname: <input type="text"> <br>
<form> <br>
<table border="5">
<tr>
<th colspan=2> Matches played
<tr> <td> India </td>
<td> Pakistan </td>
</tr>
<tr>
<td>Australia</td>
<td>Zimbabwe</td>
</tr>
</table>
<br>
<img src="C:UsersUserDesktopcheggpicsh410_394968010540074_786842494_n.jpeg">
<a href="C:UsersUserDesktopcheggpage01.html">Redirecting you to the previous page.
</body>
</html>
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.