-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.52 KB
/
index.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
32
33
34
35
36
37
38
39
40
41
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>Веб программирование ЛР1</title>
</head>
<header>
<h1> Автомобильные иконы 80-х</h1>
<table>
<tr>
<td><a class= "sections" href="index.html">ГЛАВНАЯ</a></td>
<td><a class= "sections" href="about.html">ИНФО</a></td>
</tr>
</table>
</header>
<body>
<table>
<tr>
<td>
<img class="pics" src="pics/countach-main.jpg" width ="500" alt="no pic :-("></td>
<td>
<img class="pics" src="pics/testarossa-main.jpg" width ="443" alt="no pic :-("></td>
<td>
<img class="pics" src="pics/911turbo-main.jpg" width ="500" alt="no pic :-("></td>
<td>
<img class="pics" src="pics/gtr-main.jpg" width ="500" alt="no pic :-("></td>
</tr>
<tr>
<td>
<a class="names" href="countach.html">Lamborghini Countach</a></td>
<td>
<a class="names" href="testarossa.html">Ferrari Testarossa</a></td>
<td>
<a class="names" href="911turbo.html">Porsche 930</a></td>
<td>
<a class="names" href="gtr.html">Nissan GT-R (R32)</a></td>
</tr>
</table>
</body>
</html>