-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTML-contact-form.html
110 lines (99 loc) · 2.66 KB
/
HTML-contact-form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Form</title>
<style>
fieldset {
/* Center the form on the page */
margin: 0 auto;
width: 400px;
/* Form outline */
padding: 1em;
border: 1px solid #CCC;
border-radius: 1em;
}
div{
margin-top: 1em;
}
label {
/* Uniform size & alignment */
display: inline-block;
width: 90px;
text-align: right;
}
input,
textarea {
width: 300px;
font: 1em sans-serif;
box-sizing: border-box;
border: 1px solid #CCC;
}
input:focus,textarea:focus{
color: whitesmoke;
background-color: blueviolet;
}
textarea {
vertical-align: top;
/* Align multiline text fields with their labels */
height: 5em;
}
/*================
Animation
================= */
section{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(-30deg,rgb(9, 168, 221) 0%,rgb(70, 70, 224) 50%,rgb(196, 8, 8) 50%,lightgray 100%);
filter: hue-rotate(120deg);
animation: animate 10s linear infinite;
}
@keyframes animate{
0%{
filter: hue-rotate(60deg);
}
100%{
filter: hue-rotate(360deg);
}
}
button{
margin: 20px 0 0 124px;
border-radius: 2rem;
}
label,legend{
color:whitesmoke;
}
</style>
</head>
<body>
<section>
<form action="">
<fieldset>
<legend>Contact</legend>
<div>
<label for="name">
Name:
</label>
<input type="text">
</div>
<div>
<label for="mail">
Email:
</label>
<input type="text">
</div>
<div>
<label for="message">
Message:
</label>
<textarea name="user-message" id="message"></textarea>
</div>
<button>Send Your Message</button>
</fieldset>
</form>
</section>
</body>
</html>