Files
AJAX/TP1/Ex2/index.html
2024-01-23 09:22:58 +01:00

44 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<!-- Meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Title -->
<title>AJAX-JSON</title>
<!-- CSS Styles -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha256-L/W5Wfqfa0sdBNIKN9cG6QA5F2qx4qICmU2VgLruv9Y=" crossorigin="anonymous">
<!-- JS Scripts -->
<script src="js/ajax.js" defer></script>
<script src="js/clock.js" defer></script>
</head>
<body>
<!-- Header -->
<header class="container">
<br>
<h1>AJAX-JSON</h1>
<hr>
</header>
<!-- Errors -->
<section id="errors" class="container alert alert-danger" style="display: none">
</section>
<!-- Clock -->
<section class="container col-md-4 offset-md-4">
<h4 id='title'></h4>
<br>
<p id='detail'></p>
<canvas id="clock" width="400" height="400" style="background-color:#333"></canvas>
</section>
</body>
</html>