28 lines
907 B
PHP
28 lines
907 B
PHP
|
<!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" />
|
||
|
<title>Accueil |Jeux Olympiques - Paris 2024</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<?php include ('views/header.php'); ?>
|
||
|
|
||
|
<!-- code de la page ici -->
|
||
|
<h1>Accueil</h1>
|
||
|
|
||
|
<?php include ('views/footer.php'); ?>
|
||
|
|
||
|
<script src="https://kit.fontawesome.com/f16a36bad3.js" crossorigin="anonymous"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|