CODE
CODE
<!DOCTYPE html>
<head>
<title>home</title>
<link rel="stylesheet" type="text/css" href=c:\Users\Jha\Desktop\website\
style.css>
</head>
<body >
<div style="text-align: center;"><img style="width: 18%; height: fit-
content;" src="c:\Users\Jha\Desktop\logoo.png">
</div>
<div style="text-align: center;margin-top: 10px;">
<a style="padding-right: 20px;" href="home.html">Home</a>
<a style="padding-right: 20px;"href="About.html">About</a>
<a style="padding-right: 20px;" href="services.html">Services</a>
</div>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="item">Item:</label>
<input type="text" id="item" name="item" required>
<label for="quantity">Quantity:</label>
<input type="number" id="quantity" name="quantity" required>
}
select {
float: left;
display: block;
color:black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
select {
background-color: palevioletred;
color:white;
}
.order-form {
margin: 0 auto;
max-width: 400px;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type="text"], input[type="email"], textarea {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;}
input[type="submit"] {
background-color: palevioletred;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: palevioletred;
}