-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathindex.html
40 lines (37 loc) · 1.09 KB
/
index.html
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
<!DOCTYPE html>
<html >
<head>
<title>Coder Shiyar</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
table {
width: 100%;
}
table th{
background: rgb(36, 36, 36);
color: white;
padding: 14px;
text-align: left;
}
table td{
background: #856bea;
color: white;
padding: 14px;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th> Name: </th>
<th>Password: </th>
<th> User: </th>
</tr>
</thead>
<tbody id="table_items"> </tbody>
</table>
<script src="script.js"> </script>
</body>
</html>