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

1.) Use the CSS to configure a table that has a border around both the entie tab

ID: 3566723 • Letter: 1

Question

1.) Use the CSS to configure a table that has a border around both the entie table and the table cells. Write the HTML to creat a table with three rows and two colums. The cell in the first column of each row will contain the name of one of your favorite movies. The corresponding cell in the second column of each row will contain a description of the movie.

2.)

Create a web page about your favorite movie that uses a two-colum table containing details about the movie. Use CSS to style the table border and bakground color. Include the following in the table:

Title of the movie--Director or producer--Leading actor--Leading actress--Rating (G,PG,Pg-13, R,NC-17,NR)--

A brief description of the movie.

Plane an e-mail link to yourself on the web page. Save the page as sport8.html

Explanation / Answer

ques 1:-

<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}


</style>
</head>
<body>

<table>
<tr>
<th>Doom 3</th>
<th>Action</th>


</tr>
<tr>
<td>Happy new year</td>
<td>comedy</td>


</tr>
<tr>
<td>kick</td>
<td>action</td>

</tr>
</table>


</body>
</html>

ques 2:-

<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}

th {
background-color: red;
color: white;
}
tr {
background-color: grey;
color: white;
}
</style>
</head>
<body>

<table>
<tr>
<th>Title of the movie</th>
<th>Director or producer</th>
<th>Leading actor</th>
<th>Leading actress</th>
<th>Rating (G,PG,Pg-13, R,NC-17,NR)</th>
<th>Description</th>
</tr>
<tr>
<td>DHOOM 3</td>
<td>Yash Raj</td>
<td>Aamir khan</td>
<td>Katrina</td>
<td>NC-17</td>
<td>Action </td>

</tr>
<tr>
<td>xyz</td>
<td>xyz</td>
<td>Lois</td>
<td>xyz</td>
<td>xyz</td>
<td>xyz</td>
</tr>
</table>
<a href="sports8.html"> Email </a>

</body>
</html>

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Chat Now And Get Quote