Assignment No 3 Web Eng
Assignment No 3 Web Eng
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta charset="UTF-8">
<style>
/PART:1/
table {
border-collapse: collapse;
width: 100%;
dh, bd {
padding: 10px;
text-align: center;
dh {
background-color: ;
color: white;
}
tr:hover {
background-color: orange;
bd:hover {
background-color: pink;
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>Name</th>
<th>Roll No</th>
<th>Semester</th>
<th>Department</th>
</tr>
</thead>
<tbody>
<tr>
<td>shahzaib</td>
<td>053</td>
<td>3rd</td>
<td>CS</td>
</tr>
<tr>
<td>ahmed</td>
<td>049</td>
<td>3rd</td>
<td>CS</td>
</tr>
<tr>
<td>Usman</td>
<td>089</td>
<td>3rd</td>
<td>CS</td>
</tr>
<tr>
<td> Ahad</td>
<td>046</td>
<td>3rd</td>
<td>CS</td>
</tr>
</tbody>
</table>
<fieldset>
<legend>Sign up</legend>
<form>
<label>Name</label>
<label>Password</label>
<label>Email</label>
<label>Gender</label><br>
<label>Male</label>
<label>Female</label>
</form>
</fieldset>
<br></br>
<head>
<meta charset="UTF-8">
<title>Styled List</title>
<style>
ul {
list-style: none;
padding: 0;
li {
margin-bottom: 10px;
font-style: italic;
ul.custom-colors li::before {
content: '\2022';
color: green;
margin-right: 8px;
ol.custom-colors li {
counter-increment: custom-counter;
margin-bottom: 10px;
ol.custom-colors li::before {
content: counter(custom-counter);
color: green;
font-weight: bold;
margin-right: 8px;
</style>
</head>
<body>
<h2>Customized List</h2>
<ul class="custom-colors">
<li>Oil</li>
<li>Sugar</li>
<li>Tea</li>
<li>Ice cream</li>
<li>Bottle</li>
<li>Rice</li>
</ul>
<ol class="custom-colors">
<li>Price Of Oil:4000</li>
<li>Price Of Sugar:500</li>
<li>Price Of Tea:780</li>
<li>Price Of Bottle:1300</li>
<li>Price Of Rice:800</li>
</ol>
</body>
</html>