Skip to content

Commit

Permalink
Update the list and tables
Browse files Browse the repository at this point in the history
  • Loading branch information
ranjith-ka committed Aug 15, 2024
1 parent c6db1d1 commit b46882d
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions minikube/web-development/products.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!-- List and Tables -->
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Products</title>
</head>

<body>
<header>
<h1>Products</h1>
</header>
<main>
<ul type="circle">
<li>Product 1</li>
<li>Product 2</li>
<li>Product 6</li>
<li>Product 4</li>
<li>Product 5</li>
</ul>
<!-- Oder list -->
<ol type="1">
<li>Product 5</li>
<li>Product 2</li>
<li>Product 7</li>
<li>Product 4</li>
<li>Product 5</li>
</ol>
<!-- Table -->
<table>
<caption>Product Details</caption>
<thead>
<tr>
<th>ProductName</th>
<th>Price</th>
<th>Quantity</th>
</tr>
</thead>
</tbody>
<tr>
<td>Product 1</td>
<td>100</td>
<td>10</td>
</tr>
<tr>
<td>Product 2</td>
<td>200</td>
<td>20</td>
</tr>
</tbody>
</table>
</main>
</body>

</html>

0 comments on commit b46882d

Please sign in to comment.