Import all

This commit is contained in:
2020-05-05 09:53:14 +02:00
parent 0e4c9c0fea
commit 7de4bab059
1411 changed files with 163444 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<!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>