exerciceDataBase

This commit is contained in:
Noel Thomy
2024-10-22 00:28:35 +04:00
parent 79875cb9bd
commit d458f70619
2 changed files with 12 additions and 2 deletions
+11 -1
View File
@@ -7,6 +7,9 @@
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style.css">
<!--Lien bootstrap--> <!--Lien bootstrap-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!--DataTable-->
<link rel="stylesheet" href="https://cdn.datatables.net/2.1.8/css/dataTables.dataTables.css" />
</head> </head>
<body> <body>
<nav id="navig" class="navbar navbar-expand-lg bg-body-tertiary"> <nav id="navig" class="navbar navbar-expand-lg bg-body-tertiary">
@@ -49,7 +52,7 @@
</div> </div>
<h1>Listes des étudiants</h1> <h1>Listes des étudiants</h1>
<div class="Liste"> <div class="Liste">
<table class="table"> <table class="table" id="maTable">
<thead> <thead>
<tr> <tr>
<th scope="col">#</th> <th scope="col">#</th>
@@ -105,5 +108,12 @@
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<!--Jquery--> <!--Jquery-->
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script> <script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
<!--DataBase-->
<script src="https://cdn.datatables.net/2.1.8/js/dataTables.js"></script>
<script>
$(document).ready( function () {
$('#maTable').DataTable();
} );
</script>
</body> </body>
</html> </html>
+1 -1
View File
@@ -30,7 +30,7 @@ a{
border-radius: 10px; border-radius: 10px;
} }
.Liste{ .Liste{
width: 50%; width: 60%;
margin: 64px auto; margin: 64px auto;
} }
.header{ .header{