Blame view

appWeb/index.html 735 Bytes
1e6dee6c   aknockae   ajout de l'applic...
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
  <!DOCTYPE html>
  <html>
  <head>
  	<meta charset="UTF-8"> 
  	<title>Page Title</title>
  	<script src="js/script.js"></script>
  	<script src="js/jquery-3.2.1.min.js"></script>
  </head>
  <body>
  	<h1>Station météo en ligne</h1>
  	<h2>Gracias-Havard-Kiang-Knockaert</h2>
  	
  	<h3>Météo</h3>
  	<div id="apercuGeneral">
  		<div class="soleil"></div>
  		<div class="nuageux"></div>
  		<div class="pluie"></div>
  	</div>
  
  	<div id="relevesMeteo">
  		<table>
  			<tr>
  				<th>Température</th>
  				<th>Humidité</th>
  				<th>Pression</th>
  				<th>Luminosité</th>
  			</tr>
  			<tr>
  				<td class="temperature"></td>
  				<td class="humidite"></td>
  				<td class="pression"></td>
  				<td class="luminosite"></td>
  			</tr>
  		</table>
  	</div>
  
  	
  </html> 
  </body>