-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLesson_7.html
31 lines (31 loc) · 1.09 KB
/
Lesson_7.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Lesson 7</title>
</head>
<body>
<table border="1px" align="center" cellspacing="0" cellpadding="10" style="font-size: 26px">
<tr>
<td colspan="3" align="center">Динозавры</td>
</tr>
<tr>
<td rowspan="2" width="100" height="300" style="vertical-align: top">
<figure style="font-size: 18px">
<img src="image/Raptor.png" width="200" height="130"
alt="изображение динозавра велоцираптора"
title="Велоцираптор -род хищных двуногих динозавров из семейства дромеозаврид, подсемейства велоцирапторин">
<figcaption>
Velociraptor от лат. velox — быстрый и raptor — охотник.
</figcaption>
</figure>
</td>
<td colspan="2" width="300" height="50" align="center">Велоцираптор</td>
</tr>
<tr style="vertical-align: top">
<td width="200" height="100">Вес</td>
<td width="200" height="100">Рост</td>
</tr>
</table>
</body>
</html>