Project
Project
Submitted by Submitted to
<html>
<head>
<style>
Html, body {
Min-height: 100%;
Padding: 0;
Margin: 0;
Outline: none;
Font-size: 14px;
Color: #666;
Line-height: 22px;
H1 {
Margin: 15px 0;
Font-weight: 400;
H4 {
Margin-bottom: 4px;
.testbox {
Display: flex;
Justify-content: center;
Align-items: center;
Height: inherit;
Padding: 3px;
Form {
Width: 100%;
Padding: 20px;
Background: #fff;
Width: 100%;
Margin-bottom: 10px;
Border-radius: 3px;
Input {
Padding: 5px;
Outline: none;
Select {
Padding: 7px 0;
Background: transparent;
Textarea {
Margin-bottom: 3px;
.item {
Position: relative;
Display: flex;
Flex-direction: column;
Margin: 10px 0;
Input[type=”date”]::-webkit-inner-spin-button {
Display: none;
.item i, input[type=”date”]::-webkit-calendar-picker-indicator {
Position: absolute;
Font-size: 20px;
Color: #a9a9a9;
.item i {
Left: 94%;
Top: 30px;
z-index: 1;
[type=”date”]::-webkit-calendar-picker-indicator {
Left: 93%;
z-index: 2;
opacity: 0;
cursor: pointer;
Display: flex;
Flex-wrap: wrap;
.street input {
Margin-bottom: 10px;
}
Small {
Display: block;
Line-height: 16px;
Opacity: 0.7;
.btn-block {
Margin-top: 20px;
Text-align: center;
Button {
Width: 150px;
Padding: 10px;
Border: none;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
Border-radius: 5px;
Background-color: #095484;
Font-size: 16px;
Color: #fff;
Cursor: pointer;
Button:hover {
Background-color: #0666a3;
Input {
Margin: 0 0 0 8px;
Select {
.item {
Flex-direction: row;
Align-items: center;
.item p {
Width: 30%;
.item i {
Left: 61%;
Top: 25%;
[type=”date”]::-webkit-calendar-picker-indicator {
Left: 60%;
Width: 70%;
.street input {
.street .street-item {
Width: 100%;
Align-self: flex-start;
Margin-top: 6px;
.desired-outcome-item, .complaint-details-item {
Margin-left: 12px;
}
Textarea {
</style>
</head>
<body>
<div class=”testbox”>
<form action=”/”>
<h1>Complaint Form</h1>
<p>Please send us details about the incident you would like to report. Our Complaint Center will
analyze your complaint and take the appropriate measures in order that the reported situation will
not occur at any other time in the future.</p>
<hr/>
<div class=”item”>
<p>Date of complaint</p>
</div>
<div class=”item”>
<p>Name</p>
</div>
<div class=”item”>
<p>Email</p>
</div>
<p>Address</p>
<div class=”street”>
<input class=”street-item” type=”text” name=”name” placeholder=”Street address” />
<select>
<option value=””>Country</option>
<option value=”1”>Russia</option>
<option value=”2”>Germany</option>
<option value=”3”>France</option>
<option value=”4”>Armenia</option>
<option value=”5”>USA</option>
</select>
</div>
</div>
<div class=”item”>
</div>
<p>Incident location</p>
</div>
<p>Complaint details</p>
<div class=”complaint-details-item”>
<textarea rows=”5”></textarea>
</div>
</div>
<div class=”desired-outcome-item”>
<textarea rows=”5”></textarea>
<small>By signing you declare that all information you have entered is truthful and
accurate.</small>
</div>
</div>
<h4>Your signature</h4>
<textarea rows=”5”></textarea>
<small>By signing you declare that all information you have entered is truthful and
accurate.</small>
<div class=”btn-block”>
</div>
</form>
</div>
</body>
</html>