-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.htm
171 lines (161 loc) · 3.73 KB
/
test.htm
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<html>
<head>
</head>
<style>
body:before{
height:100%;
width:100%;
background-image:url("https://emerging-europe.com/wp-content/uploads/2018/01/bigstock-Male-Doctor-In-The-Hospital-190586731.jpg");
background-size:cover;
content:"";
position:fixed;
top:0;
left:0;
z-index:-100;
}
ul li{
width:220px;
height:50px;
font-size:25px;
border-width:2px;
line-height:50px;
text-align:center;
border-radius:10px;
background:linear-gradient(#252d80,#313e78);
color:white;
list-style:none;
float:left;
margin-right:10px;
z-index:4;
}
ul li a{
text-decoration:none;
color:white;
font-family:Times New Roman;
}
ul li a:hover{
background-color:#3e558a;
display:block;
}
ul li ul {
list-style:none;
display:none;
background-color:green;
}
ul li ul li{
font-size:20px;
display:block;
border-radius:10px;
height:50px;
line-height:50px;
padding:10px 0 10px 0 ;
border:1px solid white;
margin-left:-39px;
}
ul li:hover ul{
display:block;
opacity:0.9;
}
.div1{
width:550px;
height: 0 auto;
background-color:#d8e6ed;
text-align:center;
position:relative;
top:90px;
opacity:0.8;
border-radius:2px;
left:200px;
z-index:-1;
}
.form1{
text-align:left;
padding:20px;
width:450px;
font-size:25px;
}
.fname{
width:450px;
height:30px;
border:2px solid red;
}
.login{
width:450px;
height:40px;
font-size:18px;
background-color:
border:2px solid blue;
}
h1{
font-size:45px;
}
.img{
width:150px;
}
.back{
width:200px;
height:40px;
font-size:18px;
background-color:
border:2px solid red;
}
</style>
<body>
<ul>
<li><a href=file:///C:/Users/Veenu/Desktop/projectdatabase.htm>HOME</a></li>
<li><a href=#about>ABOUT US</a>
<ul>
<li><a href=file:///C:/Users/Veenu/Downloads/eg2.html>Introduction</a></li>
<li><a href=#rules>Rules & Regulation</a></li>
<li><a href=#staff>Staff info</a></li>
</ul>
</li>
<li><a href=#departments>DEPARTMENTS</a>
<ul>
<li><a href=#skin>Skin</a></li>
<li><a href=#orthipaedic>orthopaedic</a></li>
<li><a href=#surgery>Surgery</a></li>
<li><a href=#cardiology>cardiology</a></li>
<li><a href=#radiology>Radiology</a></li>
</li>
</ul>
<li><a href=#aapointment>APPOINTMENT</a>
</li>
<li><a href=#events>EVENTS</a>
<ul>
<li><a href=#conference>Conference </a></li>
<li><a href=file:///C:/Users/Veenu/Downloads/events.html>Upcoming Events</a></li>
</ul>
</li>
<li><a href=file:///C:/Users/Veenu/Downloads/contact.html>CONTACT US</a></li>
<li><a href=file:///C:/Users/Veenu/Desktop/emergency.htm>EMERGENCY</a></li>
</ul>
<div class='div1'>
<h1><b>Resister</h1></b>
<img src="https://png.pngtree.com/svg/20161229/_username_login_1172579.png" class="img"></img>
<form method='post' class='form1'>
<b>First Name<br>
<input type="text" name="fname" placeholder= "first name" class="fname" required/><br><br>
<label><b>Last Name<br>
<input type=text name='lname' placeholder=' last name' required class='fname'><br><br>
<label><b>Email<br>
<input type=text name='email' placeholder=' email' required class='fname'><br><br>
<label><b>Phone no.<br>
<input type=text name='pnumber' placeholder=' phone no' required class='fname'><br><br>
<label><b>State<br>
<input type=text name='state' placeholder='state' required class='fname'><br><br>
<label><b>country<br>
<input type=text name='country' placeholder='country' required class='fname'><br><br>
<label><b>Birth Date<br>
<input type=date name='bdate' required class='fname'><br><br>
<label><b>Gender<br><br>
M <input type=radio name='gender' placeholder='male' required class='fname' checked><br>
F <input type=radio name='gender' placeholder='female' required class='fname'><br><br>
<label><b>Password<br>
<input type=password name='password' value='new password' class='fname'><br><br>
<input type=submit value='submit' name='submit' class='login'><br></br>
<input type=button value='back' name='back' class='back'>
</form>
</div>
</body>
</html>