-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
63 lines (63 loc) · 2.71 KB
/
about.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>O nas - Cinema</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="grafika/icon.ico">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Navigation layout -->
<header class="container-fluid">
<section class="row">
<div class="col-9 col-sm-10 col-md-5 col-xl-4">
<a href="index.html"><img src="grafika/logo.png" alt="logo kina" /></a>
</div>
<nav class="col align-self-end">
<ul class="navbar justify-content-around">
<li class="nav-item">
<a class="nav-link btn-lg btn-outline-dark" href="repertuar.php">REPERTUAR</a>
</li>
<li class="nav-item">
<a class="nav-link btn-lg btn-outline-dark" href="index.html">PREMIERY</a>
</li>
<li class="nav-item">
<a class="nav-link btn-lg btn-outline-dark" href="about.html">O NAS</a>
</li>
</ul>
</nav>
</section>
</header>
<!-- Main content layout -->
<main class="container">
<h1 class="display-3">KIM JESTEŚMY?</h1>
<section class="row row-cols-1">
<article class="col">
<h3>Nasza historia</h3>
<p>Kino 'Cinema' powstało w roku 2022, z inicjatywy prawdziwych pasjonatów kina. Posiadamy tylko dwie sale, lecz wkładamy całe nasze serca, by zadowolić naszych klientów.</p>
<h3>Godziny otwarcia</h3>
<p>pon-pt: 14:00-23:00</p>
<p>sob-niedz: 12:00 - 24:00</p>
<h3>Gorąco zapraszamy na seanse!</h3>
</article>
</section>
</main>
<!-- Footer with basic information -->
<footer class="container">
<section class="d-flex flex-row-reverse">
<div>
<address>
Cinema<br />
ul. Dworcowa 20<br />
61-890 Poznań<br />
tel. 61 222 33 33<br />
</address>
</div>
</section>
</footer>
</body>
</html>