<html>
<body>
<p align="center"><b>Сложная таблица</b></p>
<table align="center" border="5" bordercolor="red" cellspacing="1">
<tr>
<th rowspan="2" width="215">большая ячейка A</th>
<th width="135" height="30" valign="bottom" style="font-size:10px">маленькая ячейка 1</th>
<th width="135" height="30" valign="bottom" style="font-size:10px">маленькая ячейка 2</th>
</tr>
<tr>
<th colspan="2" height="50" valign="top">большая ячейка В</th>
</tr>
</table>
</body>
</html>
Объяснение:
Создаем текстовый файл
Вставляем содержимое
Меняем расширение на html
begin
randomize;
day:=random(24);
case day of
5..11:writeln('Доброго утра');
12..17:writeln('Доброго Дня');
18..22:writeln('Доброго Вечера');
23, 1..4:writeln('Доброй ночи');
end;
writeln(day);
end.