Files
2024-09-28 11:56:07 -04:00

50 lines
694 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
th, td {
padding: 10px;
}
</style>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>RC BASIC ABS</title>
</head>
<body>
<table>
<tr><th>abc</th><th>def</th><th>ghi</th><th> </th></tr>
<tr><th>dfdf</th><th>kljlj</th><th>lwllwe</th><th>lwlel</th></tr>
</table>
<par>
This is the start of a par This is line 2 of a par This is the end of a par
</par>
<ol>
<li>
item1
</li>
<li>
item2
<ul>
<li>
sub_item1
</li>
<li>
sub_item2
</li>
</ul>
</li>
</ol>
<code>
Print "Hello World"
</code>
</body>
</html>