-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactform1.html
More file actions
95 lines (71 loc) · 1.3 KB
/
Copy pathcontactform1.html
File metadata and controls
95 lines (71 loc) · 1.3 KB
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
<html>
<head>
<h1 align="center" width="900"><img src="home_files/trheader.jpg" ></h1>
<title> Contact Form </title>
<style type="text/css">
html{
background-color: 009148;
}
#form-wrap{
width: 600px;
border: 5px solid #009148;
background-color: #afc8de;
margin: 50px auto;
padding: 20px; 0;
}
form{
width: 500px;
margin: 0 auto;
}
label{
display: block;
margin: 5px 0 5px 20px;
font: 18px sans-serif;
}
input{
width: 250px;
margin: 0 0 0 20px;
}
textarea{
width: 250px;
margin: 0 0 0 20px;
}
fieldset{
border:none;
background-color: #f6f6f6;
padding: 0 0 20px 0;
}
.labelone{
margin-top:10px;
}
.btn{
width:125px;
}
form h4{
margin: 20px 0 0 30px;
font:24px sans-serif ;
color:#cdcdcd;
font-weight:bold;
}
</style>
</head>
<body>
<div id="form-wrap">
<form>
<fieldset>
<h4> Contact Me: </h4>
<label class="labelone" for="name"> Name: </label>
<input name="name"/>
<label for="E-mail"> E-mail: </label>
<input name="E-mail"/>
<label for="Comments"> Comments:</label>
<textarea name="Comments"></textarea>
</fieldset>
<fieldset>
<input class="btn" type="submit" value="Send E-mail"/>
<input class="btn" type="reset" value="Reset Form"/>
</fieldset>
</form>
</div>
</body>
</html>