-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday4.html
More file actions
112 lines (111 loc) · 3.78 KB
/
day4.html
File metadata and controls
112 lines (111 loc) · 3.78 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CONTACT DETAILS</title>
<style>
* {
box-sizing:border-box;
}
body{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
padding: 5px;
font-size: 15px;
margin:5px ;
}
.all {
background-color: rgb(182, 235, 170);
padding: 5px 15px 15px;
border: 2px solid lightgreen;
border-radius: 3px;
}
input [type="text"],
input [type="email"],
input [type="number"],
textarea{
width: 100%;
padding: 10px;
border: 1px solid yellowgreen;
margin: 9px;
}
select{
background-color: rgb(233, 233, 143);
width: 100%;
height: 100%;
}
fieldset{
width: 100%;
height: 100%;
background-color:rgb(233, 233, 143) ;
}
.heading{
text-align: center;
background: rgb(231, 231, 95) ;
padding: 40px;
}
input[type="submit"]{
background-color: rgb(231, 231, 95);
padding-inline-end: 1px 1px;
cursor: grabbing;
width: 100%;
}
h2{
background-color: rgb(233, 233, 143);
}
h4{
color: red ;
}
input[type="submit"]:hover {
background-color: rgb(52, 150, 196);
}
select:hover {
color: red;
}
</style>
</head>
<body>
<div class="all">
<form action="">
<h1 class="heading"> CONTACT DETAILS </h1>
<h2> USER'S CONTACT DETAILS </h2>
<h4>Please Fill All The Fields</h4>
<p> Your Name :
<input type="text" name="name2" required placeholder="Your Full Name">
</p>
<p> Your Phone-Number :
<input type="number" name="phnumber">
</p>
<p> Your Email :
<input type="email" name="email1" placeholder="Please Enter Valid Email Address" required>
</p>
<p> Your Adress :
<textarea name="address1" id="" cols="90" rows="4" required placeholder="Please Enter Your Address"> </textarea>
</p>
<fieldset>
<legend>Gender</legend>
<p>
Male <input type="radio" name="gender" id="male"> Female <input type="radio" name="gender" id="female">
Other <input type="radio" name="gender" id="other" required></p>
</fieldset>
<p> Message :
<textarea name="message1" id="" cols="500" rows="5" required placeholder="Enter Your Message/Enquiry To Us"></textarea>
</p>
<p> Subject :
<select name="sub1" id="">
<option value="Subject">Select Appropriate Subject</option>
<option value="JOB INQUIRY">JOB INQUIRY</option>
<option value="RECHECK FORM">RECHECK FORM</option>
<option value="FACING ISSUES">FACING ISSUES</option>
<option value="CHANGE CONTACT DETAILS">CHANGE CONTACT DETAILS</option>
<option value="OTHERS" class="type">OTHERS</option>
</select>
</p>
<p>
<input type="submit" value="CONFIRM" name="submit" id="submit">
</p>
</form>
</div>
</body>
</html>