-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
61 lines (58 loc) · 1.22 KB
/
index.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
<html>
<style>
input, textarea {
display: block;
padding: 10px;
width: 400px;
margin-bottom: 15px;
border: 1px solid lightgray;
font-size: 15px;
outline: none;
font-family: "Raleway", sans-serif;
-webkit-transition: all .25s;
-moz-transition: all .25s;
-ms-transition: all .25s;
-o-transition: all .25s;
transition: all .25s;
}
input:focus, textarea:focus {
box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.19);
}
form button {
border: none;
padding: 10px 83px;
font-size: 20px;
background-color: black;
color: #fff;
font-weight: 700;
font-family: "Raleway", sans-serif;
margin-bottom: 40px;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 1px;
}
textarea {
height: 150px;
}
</style>
<body>
<br>
<!--- Begin Content --->
<center>
<h3>Contact Form</h3>
<br>
<form action="sendmail/sendmail.php" method="post">
<input type="text" name="name" id="" placeholder="Your Name" required>
<br>
<input type="email" name="email" id="" placeholder="E-mail Address" required>
<br>
<textarea name="message" id="" cols="30" rows="10" placeholder="Type Your Message" required></textarea>
<br>
<button type="submit">Send</button>
</form>
<br>
</center>
<br>
<br>
</body>
</html>