-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignup.php
More file actions
51 lines (39 loc) · 996 Bytes
/
Copy pathsignup.php
File metadata and controls
51 lines (39 loc) · 996 Bytes
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
<html>
<head>
<title></title>
<style>
body { background-color: #f5f5f5;}
.post { width: 320px; border-collapse: collapse; margin-bottom: 10px;}
.post th { font-family: Roboto, sans-serif; font-size: 12px; color: #333; background-color: #f5f5f5; border: 1px solid #eee; padding: 5px; }
.post td { font-family: Georgia, Arial, Garamond; font-size: 10pt; color: #666; padding: 5px; border: 1px solid #eee; background-color: #fff; }
ol { list-style-type: circle; }
.mask{
width:200px;
height:200px;
background-image:url('vote.png');
position:absolute;
z-index:1;
}
.imagediv{
position:absolute;
z-indez:0;
}
</style>
</head>
<body>
<table>
<tr><form>
<td><input type="text" value="" placeholder="name"></td>
</tr>
<tr>
<td><input type="text" value="" placeholder="username"></td>
</tr>
<tr>
<td><input type="text" value="" placeholder="email"></td>
</tr>
<tr>
<td><input type="text" value="" placeholder="location"></form></td>
</tr>
</table>
</body>
</html>