Feedback
Feedback
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-eqiuv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Feedback </title>
<style>
form{
display: flex;
flex-direction: column;
gap: 1rem;
width: 45%;
margin: auto;
background-color: aliceblue;
padding: 1rem;
border-radius: 16px;
}
input{
padding:0.5rem;
border-radius: 16px;
}
input[type="submit"]{
width: fit-content;
background-color: orange;
color: white;
padding: 0.5rem 1rem;
cursor: pointer;
border: none;
box-shadow: 1px 1px 5px black;
margin: auto;
}
</style>
</head>
<body>
</body>
</html>