cours/boussaid/HTML/ex6/avecCSS/mesurephys.html

43 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css" type="text/css" media="all">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>Domotique</title>
</head>
<body>
<header>
<img src="maison.png" alt="maison green house">
<h1>Domotique</h1>
</header>
<main>
<h1>grandeurs mesurées dans le salon</h1>
<div class="data">
<table border="1">
<tr>
<td>Température :</td>
<td>20.6</td>
<td>°C</td>
<td rowspan="2">
<img id="termometre" src="termometre.png" alt="termometre"/>
</td>
</tr>
<tr>
<td>Humidité :</td>
<td>61</td>
<td>%</td>
</tr>
</table>
</div>
</main>
<footer>
<h4>GILLARD Lucas / T2D3 / 2021 LYC La Fayette</h4>
</footer>
</body>
</html>