-
Notifications
You must be signed in to change notification settings - Fork 0
/
avantage.php
100 lines (83 loc) · 1.81 KB
/
avantage.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
<?php
session_start();
?><!DOCTYPE html>
<html>
<head>
<?php
include("raccourcis/link_header.php");
?>
<title>Avantages</title>
</head>
<body>
<?php
include("raccourcis/header.php");
?>
<!-- Contenu de la page -->
<div class="container_principal">
<div class="container">
<div class="section section_column ">
<div class="section section_column section_border">
<h1>Prix de la caféteria</h1>
<!-- Tableau des prix de la cafeteria -->
<table class="table_prix">
<tr>
<td>Produit</td>
<td>Prix Adhérant</td>
<td>Prix Non Adhérant</td>
</tr>
<tr>
<td>Repas (New)*</td>
<td>3€</td>
<td>3€</td>
</tr>
<tr>
<td>Soda*</td>
<td>0,6€</td>
<td>0,8€</td>
</tr>
<tr>
<td>Snack 1*</td>
<td>0,6€</td>
<td>1€</td>
</tr>
<tr>
<td>Snack 2*</td>
<td>0,7€</td>
<td>1,1€</td>
</tr>
<tr>
<td>Thé</td>
<td>0,3€</td>
<td>0,6€</td>
</tr>
<tr>
<td>Café*</td>
<td>0,5€</td>
<td>0,6€</td>
</tr>
<tr>
<td>Chupa Chups</td>
<td>0,2€</td>
<td>0,3€</td>
</tr>
</table>
</div>
</div>
<div class="section section_column section_border">
<h2>Repas</h2>
<div class="paragraphe">
<span>
<strong>Les membres bénéficient d’une formule ASIMOV <br>
au Subway à 5€ le Sub30 avec une boisson.<br>
<br>
*(Plat tout fait + Boisson ou Snack <br>
Plat : Lasagne, Blanquette de veau )</strong></span>
</div>
</div>
</div>
<?php
include("raccourcis/footer.php");
?>
</div>
</body>
</html>