35 lines
936 B
HTML
35 lines
936 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="styles/main.css" />
|
|
<link rel="stylesheet" href="styles/header.css" />
|
|
<link rel="stylesheet" href="styles/footer.css" />
|
|
<link
|
|
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="32x32"
|
|
href="https://tickets.paris2024.org/obj/media/FR-Paris2024/specialLogos/favicons/favicon-32x32.png"
|
|
/>
|
|
<script
|
|
src="https://kit.fontawesome.com/f16a36bad3.js"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
<title>Jeux Olympiques - Paris 2024</title>
|
|
</head>
|
|
|
|
<body>
|
|
<?php include ('views/header.php'); ?>
|
|
|
|
<!-- code de la page ici -->
|
|
|
|
<?php include ('views/footer.php'); ?>
|
|
</body>
|
|
</html>
|