forked from khanhdnk/akathon01-23
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.php
151 lines (134 loc) · 2.93 KB
/
test.php
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
<h2>developers rating</h2>
<table>
<thead>
<tr>
<th>avatar</th>
<th>group</th>
<th>name</th>
<th>points</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="https://placehold.co/60" alt="placehold"></td>
<td>ninja</td>
<td>ahmed mohamed</td>
<td>120</td>
<td>
<button class="button_one">view</button>
<button class="button_two">delete</button>
</td>
</tr>
<tr>
<td><img src="https://placehold.co/60" alt="placehold"></td>
<td rowspan="2">shades</td>
<td>shady nabile</td>
<td>180</td>
<td>
<button class="button_one">view</button>
<button class="button_two">delete</button>
</td>
</tr>
<tr>
<td><img src="https://placehold.co/60" alt="placehold"></td>
<td>eman mohamed</td>
<td>160</td>
<td>
<button class="button_one">view</button>
<button class="button_two">delete</button>
</td>
</tr>
</tbody>
<tr>
<td><img src="https://placehold.co/60" alt="placehold"></td>
<td rowspan="2">valhala</td>
<td>mohamed inbrahim</td>
<td>190</td>
<td>
<button class="button_one">view</button>
<button class="button_two">delete</button>
</td>
</tr>
<tr>
<td><img src="https://placehold.co/60" alt="placehold"></td>
<td>noor atef</td>
<td>110</td>
<td>
<button class="button_one">view</button>
<button class="button_two">delete</button>
</td>
</tr>
<tr class="bottom">
<td><img src="https://placehold.co/60" alt="placehold"></td>
<td>unino</td>
<td>ibrahim adel</td>
<td>130</td>
<td>
<button class="button_one">view</button>
<button class="button_two">delete</button>
</td>
</tr>
</table>
<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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="style/animation.css">
<link rel="icon" href="images/tabicon.png">
<link rel="stylesheet" href="style/form.css">
<title>Information</title>
<style>
h2 {
text-transform: capitalize;
text-align: center;
}
table {
width: 700px;
margin: 20px auto;
}
table,
th,
td {
border: 1px solid white;
border-collapse: collapse;
padding: 15px;
text-align: center;
text-transform: capitalize;
font-size: 20px;
}
table th {
background-color: #404040;
color: white;
}
table td {
background-color: #eeeeee;
}
img {
border: 1px solid #b7b6b6;
}
button {
font-size: 18px;
padding: 8px;
text-transform: capitalize;
border-radius: 5px;
border: none;
cursor: pointer;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
.button_one {
background: #03a9f4;
color: white;
}
.button_two {
background: #e91e63;
color: white;
}
.bottom {
border-bottom: 2px solid #009688;
}
</style>