-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (33 loc) · 828 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
<!DOCTYPE html>
<html>
<head>
<title>
Start
</title>
<!-- przyklad css w pliku html -->
<style>
#container {
width: 620px;
background-color: silver;
margin-left: auto;
margin-right: auto;
padding: 5px;
}
</style>
<!-- podlinkowanie pliku css -->
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="container">
<div id="logo">
<a href="index.html "><img src="images/StronaStartowa.png " width="620px " alt="index " /></a>
</div>
<div id="content">
<a href="repertuar.html"><h1>Repertuar</h1></a>
</div>
<div id="footer">
<h4> Copyright © Pawel Rynowiecki </h4>
</div>
</div>
</body>
</html>