50 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="fr">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <link rel="stylesheet" type="text/css" href="styles/<?php echo((isset($_GET["theme"]) && $_GET["theme"]=="vieux") ? '2000' : 'today')?>/main.css"/>
 | |
|     <link rel="preconnect" href="https://fonts.googleapis.com">
 | |
|     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
 | |
|     <link href="https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap" rel="stylesheet">
 | |
|     <link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
 | |
|     <script src="nav.js" defer></script>
 | |
|     <title>Accueil | Don't meet me</title>
 | |
| </head>
 | |
| <body>
 | |
|     <?php include("header.php") ?>
 | |
|     <main>
 | |
|         <section id="makeachoicehf">
 | |
|             <section id="secman">
 | |
|                 <img id="homme" src="img/man.jpg" alt="imgage homme">
 | |
|                 <article id="txthomme">Chercher un homme</article>
 | |
|             </section>
 | |
|             <section id="secwoman">
 | |
|                 <img id="femme" src="img/woman.jpeg" alt="image femme">
 | |
|                 <article id="txtfemme">Chercher une femme</article>
 | |
|             </section>
 | |
|         </section>
 | |
|         <section id="comments">
 | |
|             <section id="comment1">
 | |
|                 <figure>
 | |
|                     <img id="avis1" src="img/avis1.jpeg" alt="image femme avis 1"> 
 | |
|                 </figure>
 | |
|                 <figcaption id="caption1">"avis1"</figcaption>
 | |
|             </section>
 | |
|             <section>
 | |
|                 <figure>
 | |
|                     <img id="avis2" src="img/avis2.jpg" alt="image femme avis 2"> 
 | |
|                 </figure>
 | |
|                 <figcaption id="caption2">"avis2"</figcaption>
 | |
|             </section>
 | |
|             <section>
 | |
|                 <figure>
 | |
|                     <img id="avis3" src="img/avis3.jpeg" alt="image homme avis 3"> 
 | |
|                 </figure>
 | |
|                 <figcaption id="caption3">"avis3"</figcaption>
 | |
|             </section>
 | |
|         </section>
 | |
|     </main>
 | |
|     <?php include("footer.php") ?>
 | |
| </body>
 | |
| </html>
 |