-
Notifications
You must be signed in to change notification settings - Fork 128
/
index.html
44 lines (44 loc) · 859 Bytes
/
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
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Fabryka cukierków</title>
<link rel="stylesheet" href="styl10.css" />
<script src="main.js"></script>
</head>
<body>
<div id="gorny1">
<a href="zamowienie.html">Zamów cukierki</a>
</div>
<div id="gorny2">
<a href="index.html"><img src="logotyp.png" alt="Nasze logo" /></a>
</div>
<div id="baner">
<h1>Słodka kraina</h1>
</div>
<div id="lewy">
<img src="cukierki3.jpg" alt="Nasze cukierki" />
</div>
<div id="prawy">
<h2>Nasza oferta</h2>
<table>
<tr>
<td>Kształty</td>
<td rowspan="2">Możesz zamówić<br/>dowolny kolor cukierka</td>
</tr>
<tr>
<td>
<ol>
<li>cytryna</li>
<li>liść</li>
<li>banan</li>
</ol>
</td>
</tr>
</table>
</div>
<div id="stopka">
Autor strony: <b>PESEL</b>
</div>
</body>
</html>