0% found this document useful (0 votes)
2 views2 pages

New Text Document

The document is an HTML template for a contact form that allows users to request free support. It includes a description textarea, input fields for subject, name, and email, and a send button. The design is styled with CSS for a clean and user-friendly interface.

Uploaded by

muradi gamer
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

New Text Document

The document is an HTML template for a contact form that allows users to request free support. It includes a description textarea, input fields for subject, name, and email, and a send button. The design is styled with CSS for a clean and user-friendly interface.

Uploaded by

muradi gamer
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<html>

<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>

You might also like