HTML Table by swdRana
unknown
html
4 years ago
1.7 kB
20
Indexable
<!DOCTYPE html>
<html>
<head>
<title>HTML Table by swdrana</title>
<style>
table,td{
border: 1px solid red; border-collapse: collapse;
text-align: center;
color: green;
}
table{
width: 60%;
}
.text{
text-align: left;
padding-left: 5%;
}
a{
text-decoration: none;
color: black;
transition: 0.2s;
}
a:hover{
text-decoration: underline;
color: red;
}
img{
width: 30%;
}
</style>
</head>
<body>
<center>
<h2><a href="https://fb.com/swdrana">HTML Table by Rana</a></h2>
<table >
<tr>
<td colspan="3">A</td>
</tr>
<tr>
<td rowspan="3">B</td>
<td >C</td>
<td rowspan="4">E</td>
</tr>
<tr>
<td > D</td>
</tr>
<tr>
<td class="text">☐ HTML <br> ☐ CSS <br> ☐ MS-Access</td>
</tr>
<tr>
<td colspan="2">F</td>
</tr>
</table>
<a href="https://fb.com/swdrana"><img src="https://www.pngkey.com/png/detail/30-304007_find-us-on-facebook-facebook-click-here-button.png" alt="Follow me on facebook"></a>
</center>
</body>
</html>Editor is loading...