Untitled
unknown
plain_text
a year ago
2.1 kB
5
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Second Task</title>
</head>
<body>
<!-- Page Title -->
<div class="title">
<h1>Product Information</h1>
</div>
<!-- Form -->
<form action="success.html" target="_blank">
<h2>Contact Form</h2>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<br><br>
<label for="email">Email:</label>
<input type="text" name="email" id="email" required>
<br><br>
<label for="country">Country</label>
<select id="country" name="country" required>
<option value="" selected>Select</option>
<option value="india">INDIA</option>
<option value="usa">USA</option>
<option value="canada">Canada</option>
<option value="uk">UK</option>
</select>
<br><br>
<button type="submit" value="submit">Submit</button>
</form>
<!-- Products Details-->
<div class="p-details">
<h2>Products</h2>
<table border="2" cellpadding="5" cellspacing="3" >
<thead>
<tr>
<th>Product Name</th>
<th>Price</th>
<th>Quantity</th>
</tr>
</thead>
<tbody>
<tr>
<td>Iphone 16</td>
<td><span>₹</span>150000</td>
<td>100</td>
</tr>
<tr>
<td>Mac book</td>
<td><span>₹</span>89999</td>
<td>50</td>
</tr>
<tr>
<td>Ipad</td>
<td><span>₹</span>50000</td>
<td>200</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>Editor is loading...
Leave a Comment