mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-04 16:11:54 +00:00
23 lines
No EOL
390 B
HTML
23 lines
No EOL
390 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
td {
|
|
border: 1px solid black;
|
|
width: 200px;
|
|
height: 100px;
|
|
vertical-align: text-top;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<tr>
|
|
<td>Text at the top</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html> |