New Text Document
New Text Document
<head>
<style>
body {
font-family: Arial, sans-serif;
}
.container {
width: 80%;
margin: 0 auto;
padding-top: 50px;
}
h1 {
font-size: 36px;
font-weight: bold;
}
.form-container {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.description {
width: 65%;
height: 200px;
border: 1px solid #ccc;
padding: 10px;
font-size: 16px;
resize: none;
}
.input-container {
width: 30%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.input-container input, .input-container button {
height: 50px;
margin-bottom: 10px;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
}
.input-container button {
background-color: #5a67d8;
color: white;
border: none;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<h1>Contact us to get free support</h1>
<div class="form-container">
<textarea class="description" placeholder="Description"></textarea>
<div class="input-container">
<input type="text" placeholder="Subject">
<input type="text" placeholder="Name / Surname">
<input type="email" placeholder="Email">
<button>Send</button>
</div>
</div>
</div>
</body>
</html>