-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault-table.html
More file actions
48 lines (48 loc) · 1.15 KB
/
default-table.html
File metadata and controls
48 lines (48 loc) · 1.15 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
<!doctype html>
<html lang=en>
<head>
<title>Default table</title>
<meta charset="utf-8">
<!-- <meta details go here> -->
<meta name="google-adsense-account" content="ca-pub-9639638377144073">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-UA Compatible" content="ie=edge">
<meta name="author" content="Orris A BakerJr">
<meta name="description" content="HTML, Jquery, Javascript, Multimedia document">
<meta name="theme-color" content="#712cf9">
<meta name="keywords" content="HTML5, Node.js, Jquery">
<meta name="author" content="Ian Andolina">
<style type="text/css">
table, tr, td { width: 600px; border: 1px solid #000000;
}
</style>
</head>
<body>
<table>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>