36 lines
900 B
HTML
Executable File
36 lines
900 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<title>L'apprentissage de Linux</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Super table</h1>
|
|
|
|
<nav>
|
|
</nav>
|
|
</header>
|
|
|
|
<section id="corps">
|
|
<table id="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Firstname</th>
|
|
<th>Lastname</th>
|
|
<th>Age</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="datatable">
|
|
</tbody>
|
|
</table>
|
|
<button id="addRow" type="button">Ajouter ligne</button>
|
|
</section>
|
|
<footer>
|
|
</footer>
|
|
</body>
|
|
<script src="script.js"></script>
|
|
</html>
|