initial commit

This commit is contained in:
root
2024-06-03 16:43:53 +03:00
commit 21e3fd0797
1535 changed files with 60499 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 align="center">
<font face="Helvetica">
Contact Us
</font>
</h1>
<hr color="#22DFF6" size="8" width="7%"/>
<table cellpadding="10" cellspacing="0" width="100%">
<tr>
<td width="50%">
<form >
<label for="name">Name <span>*</span></label>
<input id="name" type="text" required="required" />
<label for="email">E-mail <span>*</span></label>
<input id="email" type="email" required="required" />
<label for="tel">Phone number <span>*</span></label>
<input id="tel" type="tel" required="required" />
<label for="subject">Subject <span>*</span></label>
<input id="subject" type="text" required="required" />
<label for="message">Message <span>*</span></label>
<textarea id="message" rows="5" required="required"></textarea>
<input type="submit" value="SEND YOUR MESSAGE" />
</form>
</td>
</tr>
</table>
</body>
</html>

View File

@@ -0,0 +1,55 @@
* {
box-sizing: border-box;
}
table {
padding: 0 3px;
}
table td {
width: 100%;
display: block;
}
label {
display: block;
padding-bottom: 5px;
}
span {
color: #2FB3CD;
}
input {
border: 1px solid #ccc;
width: 100%;
padding: 10px;
outline: none;
margin-bottom: 15px;
}
input[type=submit] {
background-color: #0DBFDC;
color: white;
font-weight: bold;
margin-top: 40px;
border-radius: 4px;
width: 100%;
}
textarea {
border: 1px solid #ccc;
width: 100%;
padding: 10px;
outline: none;
min-height: 80px;
resize: vertical;
}
@media only screen and (min-width: 768px) {
table {
padding: 30px 80px 0 80px;
}
table td {
width: 50%;
display: inline-block;
}
textarea, input {
width: 80%;
}
input[type=submit] {
width: fit-content;
}
}