diff options
author | polo <ordipolo@gmx.fr> | 2024-02-09 15:56:55 +0100 |
---|---|---|
committer | polo <ordipolo@gmx.fr> | 2024-02-09 15:56:55 +0100 |
commit | 949737cf5fc2a21b36c4a269a437d0dc2e965441 (patch) | |
tree | 5a6962408f833e6e2b04519fed544193e41e6360 /kiffe.php | |
download | lelionetlecolibri-master.zip |
Diffstat (limited to 'kiffe.php')
-rw-r--r-- | kiffe.php | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/kiffe.php b/kiffe.php new file mode 100644 index 0000000..fa40417 --- /dev/null +++ b/kiffe.php | |||
@@ -0,0 +1,77 @@ | |||
1 | <?php | ||
2 | session_start(); | ||
3 | ?> | ||
4 | |||
5 | <!DOCTYPE html> | ||
6 | <html lang="fr" > | ||
7 | <head> | ||
8 | <meta charset="utf-8" /> | ||
9 | <title>On aime</title> | ||
10 | <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /> | ||
11 | <meta name="description" content="Autres sites." > | ||
12 | <link rel="stylesheet" href="blog.css" /> | ||
13 | <meta name="viewport" content="width=device-width" /> | ||
14 | <style> | ||
15 | .corps | ||
16 | { | ||
17 | flex-direction: column; | ||
18 | } | ||
19 | </style> | ||
20 | <?php include("matomo.php"); ?> | ||
21 | </head> | ||
22 | |||
23 | <body> | ||
24 | <div id="bloc_page"> | ||
25 | <!-- photo banderole et titre --> | ||
26 | <header> | ||
27 | <h1><img class="sakura" src="sakura.png" alt="sakura" />On aime<img class="sakura" src="sakura.png" alt="sakura" /></h1> | ||
28 | |||
29 | <?php include ("menu.php"); ?> | ||
30 | </header> | ||
31 | |||
32 | <div class="corps" > | ||
33 | <div> | ||
34 | <a href="http://zingueurs-band.over-blog.com" > | ||
35 | <h2>Le Zingueur's Band</h2> | ||
36 | </a> | ||
37 | <div style="display: flex;" > | ||
38 | <p>la fanfare de Quimper</p> | ||
39 | <a href="http://zingueurs-band.over-blog.com" > | ||
40 | <img src="zingueurs.jpg" alt="logo zingueurs" /> | ||
41 | </a> | ||
42 | </div> | ||
43 | </div> | ||
44 | |||
45 | <div> | ||
46 | <a href="https://reseaumoulinvert.fr" > | ||
47 | <h2>Réseau d'échanges de savoirs</h2> | ||
48 | </a> | ||
49 | <div style="display: flex;" > | ||
50 | <p>de la maison de quartier du moulin vert</p> | ||
51 | <a href="https://reseaumoulinvert.fr" > | ||
52 | <img src="réseau.png" alt="RERS moulin vert" /> | ||
53 | </a> | ||
54 | </div> | ||
55 | </div> | ||
56 | |||
57 | <div> | ||
58 | <a href="https://ordipolo.fr" > | ||
59 | <h2>Ordipolo</h2> | ||
60 | </a> | ||
61 | <div style="display: flex;" > | ||
62 | <p>dépannage informatique</p> | ||
63 | <a href="https://ordipolo.fr"> | ||
64 | <img src="minilogo.png" alt="ordipolo" /> | ||
65 | </a> | ||
66 | </div> | ||
67 | </div> | ||
68 | |||
69 | <ul> | ||
70 | <li id="admin" > | ||
71 | <p><a href="index.php" >Retour au blog</a></p> | ||
72 | </li> | ||
73 | </ul> | ||
74 | </div> | ||
75 | </div> | ||
76 | </body> | ||
77 | </html> | ||