QUESTION 1
Code:
<!DOCTYPE html>
<html>
<body>
</body>
</html>
Result:
QUESTION 2
Code:
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left;
}
</style>
</head>
<body>
<table style="width:100%">
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Points</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
</body>
</html>
Result:
First Name Last Name Points
Jill Smith 50
Eve Jackson 94
QUESTION 3
Code:
<!DOCTYPE html>
<html>
<body>
Universal Studios Presents
Jurassic Park
About
On the Island of Isla Nublar, a new park has been built: Jurassic Park is a theme park of cloned
dinosaurs!!
</body>
</html>
Result :
Universal Studios Presents Jurassic Park About On the Island of Isla Nublar, a new park has been
built: Jurassic Park is a theme park of cloned dinosaurs!!