-
Notifications
You must be signed in to change notification settings - Fork 0
/
prestation.html
103 lines (90 loc) · 3.15 KB
/
prestation.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
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>Projet Terre de geek</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<script src="https://kit.fontawesome.com/6dd1f33a58.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="shortcut icon" type="image/png" href="img/favicon.png"/>
<meta name="theme-color" content="#fafafa">
</head>
<body>
<!-- Start header -->
<header>
<h1>Terre de Geek</h1>
<!-- Navigation -->
<nav>
<ul>
<li><a href="index.html"><i class="fas fa-home"></i>Acceuil</a></li>
<li><a href="apropos.html"><i class="fas fa-address-card"></i>À propos</a></li>
<li><a href="contact.html"><i class="fas fa-file-signature"></i>Contact</a></li>
<li><a href="prestation.html"><i class="fas fa-tools"></i>Préstation</a></li>
</ul>
</nav>
</header>
<section>
<table>
<caption>Les présations proposées par notre entreprise</caption>
<tr>
<th>Type de Préstation</th>
<th>Prix</th>
<th>Personne en charge</th>
</tr>
<tr>
<td>Réparation de smartphone phone</td>
<td class="price">50€</td>
<td>Micka Eljakson</td>
</tr>
<tr>
<td>Réparation de tablette</td>
<td class="price">75€</td>
<td>Jackie Tuning</td>
</tr>
<tr>
<td>Réparation d'ordinateur</td>
<td class="price">100€</td>
<td>Michelle Laplace</td>
</tr>
<tr>
<td>Commande spéciale</td>
<td class="price">50-200€</td>
<td>Claudia Paquebot</td>
</tr>
<tr>
<td>Impression 3D</td>
<td class="price">150€</td>
<td>Jean-michel Blanquette</td>
</tr>
</table>
</section>
<!-- Start footer -->
<footer>
<!-- Legal mention with society name and adress -->
<div><h3>Mention légales</h3>
<ul class="mention">
<li><p>Terre de geek</p></li>
<li><p>Siège à Evreux 27000</p></li>
<li><p>Présent sur Dieppe, Forge-les-Eaux, Alençon et Louviers</p></li>
</ul>
</div>
</footer>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set', 'transport', 'beacon'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script>
</body>
</html>