-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqna.php
More file actions
50 lines (50 loc) · 1.54 KB
/
qna.php
File metadata and controls
50 lines (50 loc) · 1.54 KB
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
<!DOCTYPE html>
<html lang="sk">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Moja stránka</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/accordion.css">
<link rel="stylesheet" href="css/banner.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<?php
include_once 'parts/header.php';
?>
<main>
<section class="banner">
<div class="container text-white">
<h1>Q&A</h1>
</div>
</section>
<section class="container">
<div class="row">
<div class="col-100 text-center">
<p><strong><em>Elit culpa id mollit irure sit. Ex ut et ea esse culpa officia ea incididunt elit velit veniam qui. Mollit deserunt culpa incididunt laborum commodo in culpa.</em></strong></p>
</div>
</div>
</section>
<section class="container">
<?php include "otazky.php"; ?>
<?php for ($i = 0; $i < count($otazky); $i++) { ?>
<div class="accordion">
<div class="question"><?php echo $otazky[$i]; ?></div>
<div class="answer"><?php echo $odpovede[$i]; ?></div>
</div>
<?php
}
?>
</section>
</section>
</div>
</main>
<?php
include_once 'parts/footer.php';
?>
<script src="js/accordion.js"></script>
<script src="js/menu.js"></script>
</body>
</html>