blob: 0be7e0c6a496a8698d03dfe043c980856a336a03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
<!DOCTYPE html>
<html lang="fr" >
<head>
<meta charset="utf-8" />
<title>Sites à visiter !</title>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico" />
<link rel="icon" type="image/png" href="images/favicon.png" >
<link rel="stylesheet" href="ordipolo.css" />
<meta name="description" content="Liens vers les sites des amis" />
<meta name="viewport" content="width=device-width" />
<style>
.photoenhaut
{
display: flex;
}
@media screen and (max-width: 500px)
{
.photoenhaut
{
flex-direction: column;
}
}
</style>
</head>
<body>
<div id="bloc_page" >
<header>
<?php $actuelle = "kiffe"; ?>
<?php include ("menu.php"); ?>
<p><a href="index.php" >
<img id="logohaut" src="images/logo.png" alt="ordipolo" />
<img id="logotitre" src="images/ordipolo.png" alt="ordipolo" /></a></p>
</header>
<div class="parties" >
<a href="https://lelionetlecolibri.ordipolo.fr" >
<h1 >Le lion et le colibri</h1>
</a>
<div class="photoenhaut" >
<p>Blog que je tiens avec Katy<br/>
Au programme: voyages, gastronomie, musique, détente.</p>
<a href="https://lelionetlecolibri.ordipolo.fr" >
<img class="photo" src="images/sakura.png" alt="fleur de cerisier japonais" />
</a>
</div>
</div>
<div class="parties" >
<a href="julian/maths.html" >
<h1>Recherches en mathématiques</h1>
</a>
<div class="photoenhaut" >
<p>de Julian Favennec à la cité de la ruche.</p>
<a href="julian/maths.html" >
<img class="photo" src="julian/polygones.png" alt="" />
</a>
</div>
</div>
<div class="parties" >
<a href="http://www.romainlebadezet.com" >
<h1>Romain Le Badezet</h1>
</a>
<div class="photoenhaut" >
<p>Artistre peintre, dessinateur, plasticien</p>
<a href="http://www.romainlebadezet.com" >
<img class="photo" src="images/oneline.jpg" alt="ligne" />
</a>
</div>
</div>
<footer>
<h1><a href="#bloc_page" >Remonter en haut de la page.</a></h1>
</footer>
</div>
</body>
<script src="detecteur.js"></script>
</html>
|