top of page

Html & CSS Hands-on 5

<! DOCTYPE html>

<html>
<head>
<title>Question3</title>
<style>
#custList{
border: 1;
width: 80%;
align: center;
}
th{
backgroundcolor:#42aaf4;
}
</style>
</head>
<body>
<!-- Design & Develop your code here -->
<h2>Customer Listing</h2>
<table id="custList">
<tr>
<th>Customer Id</th>
<th>Name</th>
<th>Gender</th>
<th>City</th>
</tr>
<tr>
<td>100001</td>
<td>Akshay Kumar</td>
<td>Male</td>
<td>Chennai</td>
</tr>
<tr>
<td>100002</td>
<td>Shyama P</td>
<td>Female</td>
<td>Trivandrum</td>
</tr>
<tr>
<td>100003</td>
<td>Nalini Kumari</td>
<td>Female</td>
<td>Bangalore</td>
</tr>
<tr>
<td>100004</td>
<td>Raj Shyam</td>
<td>Male</td>
<td>Chennai</td>
</t>
<tr>
<td>100005</td>
<td>Sundar G</td>
<td>Male</td>
<td>Mangalore</td>
</tr>
</table>
</body>
</html>

​

html &css 5: About

©2018 by The real one. Proudly created with Wix.com

bottom of page