25 lines
895 B
PHP
25 lines
895 B
PHP
<!doctype html>
|
|
<html lang="fr" dir="ltr">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, maximum-scale=1" />
|
|
<!-- create "fake" favicon : https://stackoverflow.com/questions/1321878/how-to-prevent-favicon-ico-requests -->
|
|
<link rel="icon" href="data:;base64,iVBORw0KGgo=" />
|
|
<title>hugulumu.fr</title>
|
|
<meta name="description" content="site web de hugo lamy, developpeur" />
|
|
<base href="./src/" />
|
|
<link href="./styles/reset.css" type="text/css" rel="stylesheet" />
|
|
<link href="./styles/base.css" type="text/css" rel="stylesheet" />
|
|
<link href="./styles/text.css" type="text/css" rel="stylesheet" />
|
|
<link href="./styles/mouses.css" type="text/css" rel="stylesheet" />
|
|
<link href="./styles/banners.css" type="text/css" rel="stylesheet" />
|
|
</head>
|
|
|
|
<body>
|
|
<?php include './src/body.php'; ?>
|
|
</body>
|
|
|
|
</html>
|