-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpizzeria2.php
108 lines (87 loc) · 3.67 KB
/
pizzeria2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
require('db.php');
session_start();
$products = $_SESSION['products'];
$email = $_SESSION["email"];
$kayttajaID = $_SESSION["kayttajaID"];
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Pizzeria2</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<script src="https://kit.fontawesome.com/f17e988409.js" crossorigin="anonymous"></script>
</head>
<body>
<?php
include('header.php');
?>
<div class="logo">
<img src="images/pizzaa.jpg" alt="">
</div>
<!-- Page content -->
<div class="w3-content" style="max-width:1100px">
<!-- About Section -->
<div class="w3-row w3-padding-64" id="about">
<div class="w3-col m6 w3-padding-large w3-hide-small">
<img src="images/vantaapizza.jpg" class="w3-round w3-image w3-opacity-min" alt="Tähän joku pizzerian kuva" width="600" height="750">
</div>
<div class="w3-col m6 w3-padding-large">
<h1 class="w3-center">Pizza Vantaa</h1><br>
<h5 class="w3-center">Tervetuloa</h5>
<p class="w3-large">Täällä tehdään pizzoja. Ollaan tehty pizzoja pitkään itse. Tule käymään syömässä</p>
<p class="w3-large w3-text-grey w3-hide-medium">Sijaitsemme Lehdokkitie, 01300 Vantaa. Avoinna joka päivä 8:00 - 20:00. Puh 045 232 2577</p>
</div>
</div>
<hr>
<!-- Siirtyy tuotteisiin -->
<div class="w3-row w3-padding-64" id="menu">
<div class="w3-col l6 w3-padding-large">
<h1 class="w3-center"><a href="tuotteet.php">Täällä tuotteet</a></h1><br>
</div>
<div class="w3-col l6 w3-padding-large">
<img src="pizzakuva1espoo.png" class="w3-round w3-image w3-opacity-min" alt="" style="width:100%">
</div>
</div>
<hr>
<!-- End page content -->
</div>
<!-- Footer -->
<div class="footer-clean">
<footer>
<div class="container">
<div class="row justify-content-center">
<div class="col-sm-4 col-md-3 item">
<h3>Yritystiedot</h3>
<ul>
<li><a href="#">Y-Tunnus 4242442</a></li>
<li><a href="#">Kuopiokatu 6 70100</a></li>
<li><a href="#">+358 44 123 1444</a></li>
</ul>
</div>
<div class="col-sm-4 col-md-3 item">
<h3>Linkit</h3>
<ul>
<li><a href="pizzeriat.php">Pizzeriat</a></li>
<li><a href="tuotteet.php">Tuotteet</a></li>
<li><a href="otayhteytta.php">Ota yhteyttä</a></li>
</ul>
</div>
<div class="col-sm-4 col-md-3 item">
<h3>Lisätiedot</h3>
<ul>
<li><a href="#">Avoinna ma-su 9:00 - 22:00</a></li>
</ul>
</div>
<div class="col-lg-3 item social"><a href="#"><i class="icon ion-social-facebook"></i></a><a href="#"><i class="icon ion-social-twitter"></i></a><a href="#"><i class="icon ion-social-snapchat"></i></a><a href="#"><i class="icon ion-social-instagram"></i></a>
<p class="copyright">Pizzakuopio © 2023</p>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>