48 lines
602 B
HTML
48 lines
602 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>GoBug</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<style type="text/css">
|
||
|
h1 {
|
||
|
color: white;
|
||
|
text-align: center;
|
||
|
}
|
||
|
body{
|
||
|
background: #009999;
|
||
|
}
|
||
|
table{
|
||
|
border: 1px solid white;
|
||
|
empty-cells: show;
|
||
|
padding: 0px;
|
||
|
width:100%;
|
||
|
height: 80%;
|
||
|
|
||
|
}
|
||
|
td,tr{
|
||
|
background: white;
|
||
|
width: 100px
|
||
|
height: 10px
|
||
|
padding: 0px
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1> Go bug</h1>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th></th>
|
||
|
<th></th>
|
||
|
<th></th>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td></td>
|
||
|
<td></td>
|
||
|
<td></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
|
||
|
</body>
|
||
|
</html>
|