Etudes/BTS/Web/Premiere annee/CSS4/index.html

40 lines
1.1 KiB
HTML
Raw Normal View History

2016-10-14 15:52:18 +00:00
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>CSS4</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<table>
<tr>
<th colspan="2"> Article Prix</th>
</tr>
<tr class="col1">
<td>Bic</td>
<td>1.10€</td>
</tr>
<tr class="col2">
<td>Feutre</td>
<td>1.50€</td>
</tr>
<tr class="col1">
<td>Pochette</td>
<td>0.30€</td>
</tr>
<tr class="col2">
<td>Gomme</td>
<td>0.50€</td>
</tr>
</table>
</div>
</body>
</html>