-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathContactForm.html
77 lines (76 loc) · 1.61 KB
/
ContactForm.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
<!DOCTYPE html>
<head>
<title>Contact Form</title>
<style>
.contact{
width: 382px;
overflow: hidden;
margin: auto;
margin: 20 0 0 450px;
padding: 85px;
background: orange;
border-radius: 21px ;
}
h2{
text-align: center;
color: lightgreen;
font-size:45px;
}
label{
color: blue;
font-size: 21px;
}
.Name{
width: 300px;
height: 30px;
border: none;
border-radius: 5px;
padding-left: 9px;
}
.button{
padding: 5px 13px;
display: inline-block;
text-align: center;
font-size: 25px;
cursor: pointer;
font-family: Algerian;
}
.button1 {
background-color: red;
color: lightgreen;
}
.button1:hover {
background-color: green;
color: white;
}
</style>
</head>
<body background="P3.jpg">
<h2><u>Contact Us</u></h2><br>
<div class="login">
<form class="contact" method="get" action="contact.php">
<label><b>Your Name
</b>
</label>
<input type="text" name="Yname" class="Name">
<br><br>
<label><b>Your Mail
</b>
</label>
<input type="text" name="Mail" class="Name">
<br><br>
<label><b>Your Phone No.
</b>
</label>
<input type="text" name="Phoneno." class="Name">
<br><br>
<label><b>Your Message
</b>
</label>
<input type="text" name="Message" class="Name">
<br><br><br>
                      <input type="submit" class="button button1" border="1" value="Submit"/>
</form>
</div>
</body>
</html>