01-SimpleTable
HTML Tables homework - task 01
HTML
<table>
<thead>
<tr>
<th colspan="2"><h1>Software University</h1></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="http://softuni.bg" target="_blank">
<img src="http://prikachi.com/images/448/7383448X.png" alt="SoftUni Logo" title="SoftUni Logo" />
</a>
</td>
<td>
<h2>Accessible and high quality software education.</h2>
Our mission is to make people we train true professionals in the software industry and support them in finding employment.
</td>
</tr>
</tbody>
</table>
CSS
html{
font-family:Tahoma, Arial, Helvetica, sans-serif;
font-size:16px;
}
body {
margin:0 auto;
}
table{
width:410px;
padding:5px;
}
img{
border:0;
}
th, td{
padding:5px;
text-align:left;
}
h1{
font-size:2rem;
padding:0;
margin:0;
}
h2{
font-size:1rem;
padding:0;
margin:0;
}