0% found this document useful (0 votes)
2 views

html code

The document is an HTML file that contains a styled table displaying a list of individuals with their names, phone numbers, and addresses. It includes six entries with varying locations in Nepal. The table is formatted with alternating row colors for better readability.

Uploaded by

dedarkshadowyt66
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

html code

The document is an HTML file that contains a styled table displaying a list of individuals with their names, phone numbers, and addresses. It includes six entries with varying locations in Nepal. The table is formatted with alternating row colors for better readability.

Uploaded by

dedarkshadowyt66
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html>
<head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}

td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}

tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>

<h2>HTML Table</h2>

<table>
<tr>
<th>Name</th>
<th>Phone no.</th>
<th>Address</th>
</tr>
<tr>
<td>Maria Anders</td>
<td>98********</td>
<td>Thapathali</td>
</tr>
<tr>
<td>Francisco Chang</td>
<td>97********</td>
<td>Lalitpur</td>
</tr>
<tr>
<td>Ernst Handel</td>
<td>96********</td>
<td>Kathmandu</td>
</tr>
<tr>
<td>Helen Bennett</td>
<td>94********</td>
<td>Kathmandu</td>
</tr>
<tr>
<td>Yoshi Tannamuri</td>
<td>97********</td>
<td>Ilam</td>
</tr>
<tr>
<td>Giovanni Rovelli</td>
<td>98********</td>
<td>Bhaktapur</td>
</tr>
</table>

</body>
</html>

You might also like