-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatalog.php
46 lines (44 loc) · 2.77 KB
/
catalog.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;1,600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Document</title>
</head>
<?php include "./header.php" ?>
<div class="container mt-5">
<div class="jumbotron pt-5 text-dark text-center">
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="product bg-light p-3" onclick="location.href='./pc1.php'">
<img src="https://images7.alphacoders.com/389/thumb-1920-389345.jpg" alt="pc1" class="img-thumbnail mb-4">
<h5>Pancake<br>with butter</h5>
<p class="text-danger">123лв</p>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="product bg-light p-3" onclick="location.href='./pc1.php'">
<img src="https://i.pinimg.com/originals/98/ed/25/98ed2555ad13106540a1a7c8c47abd58.jpg" alt="pc2" class="img-thumbnail mb-4">
<h5>Pancake<br>with berries</h5>
<p class="text-danger">123лв</p>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12" onclick="location.href='./pc1.php'">
<div class="product bg-light p-3">
<img src="https://i.pinimg.com/originals/4e/c8/6a/4ec86a7b359c87d534afac45e5bc9e1f.jpg" alt="pc3." class="img-thumbnail mb-4">
<h5>Pancake<br>with bannanas</h5>
<p class="text-danger">123лв</p>
</div>
</div>
</div>
</div>
</div>
<?php include "./footer.php" ?>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>