This repository has been archived on 2021-01-15. You can view files and clone it, but cannot push or open issues or pull requests.
goBug/Interfaccia.html
2017-05-26 15:10:37 +02:00

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>