I'm trying to re-create the attached image in html tables. Anyone have suggestions?

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Untitled</title>
<style type="text/css">
.grey {background-color: #d6d8d7; border: solid 1px #d6d8d7; height:90px;}
.blue {background-color: #69a3d8; border: solid 1px #d6d8d7; height:90px;}
.white {background-color: #fff; border: solid 1px #d6d8d7; height:90px;}
.one {width: 90px; min-height: 90px;}
.two {width: 180px; min-height: 90px;}
.three {width: 270px; min-height 90px;}
.four {width: 360px; min-height: 90px;}
.four {width: 450px; min-height: 90px;}
.six {width: 540px; min-height: 90px;}
.bigtable {
background-color: #d6d8d7;
border: solid 1px #d6d8d7;
}
.circle {
background-color: #fff;
width: 56px;
height: 56px;
margin-bottom: 30px;
-moz-border-radius:28px;
border-radius: 28px;
}
</style>
</head>
<body>
<table class="bigtable">
<tr>
<td colspan="1" class="blue two"> </td>
<td colspan="2" class="grey two"> </td>
<td colspan="4" class="blue three"> </td>
<td colspan="1" class="grey one"> </td>
<td colspan="1" class="blue one"> </td>
</tr>
<tr>
<td colspan="3" class="blue four"> </td>
<td colspan="3" class="blue three"> </td>
<td colspan="1" rowspan="2" class="white one"> </td>
<td colspan="2" rowspan="5" class="blue two">
<div class="circle"> </div>
</td>
</tr>
<tr>
<td colspan="1" rowspan="2" class="grey two"> </td>
<td colspan="3" class="blue three"> </td>
<td colspan="2" class="grey two"> </td>
</tr>
<tr>
<td colspan="2" class="blue two"> </td>
<td colspan="2" class="grey two"> </td>
<td colspan="2" class="blue two"> </td>
</tr>
<tr>
<td colspan="1" class="blue two"> </td>
<td colspan="6" class="white six"> </td>
</tr>
<tr>
<td colspan="1" rowspan="3" class="grey two"> </td>
<td colspan="6" class="blue six"> </td>
</tr>
<tr>
<td colspan="2" rowspan="3" class="blue two"> </td>
<td colspan="6" class="grey six"> </td>
</tr>
<tr>
<td colspan="3" class="blue three"> </td>
<td colspan="3" class="grey three"> </td>
</tr>
<tr>
<td colspan="1" class="blue two"> </td>
<td colspan="2" class="grey two"> </td>
<td colspan="4" class="blue four"> </td>
</tr>
<tr>
<td colspan="2" class="grey three"> </td>
<td colspan="3" class="blue three"> </td>
<td colspan="1" class="grey one"> </td>
<td colspan="3" class="blue three"> </td>
</tr>
</table>
</body>
</html>Users browsing this forum: No registered users and 10 guests