55 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="fr">
 | |
| <head>
 | |
|     <title>Accueil | Don't meet me</title>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
| 
 | |
|     <link rel="stylesheet" class="css" type="text/css" href="styles/today/main.css"/>
 | |
|     <link rel="stylesheet" class="css" type="text/css" href="styles/today/index.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="js/nav.js" defer></script>
 | |
|     <script src="js/themeManager.js" defer></script>
 | |
| </head>
 | |
| <body>
 | |
|     <div id="fade"></div>
 | |
|     <?php include("header.php") ?>
 | |
|     <main>
 | |
|         <section id="makeachoicehf">
 | |
|                 <a href="for.php?gender=woman" class="tuile">
 | |
|                     <img src="img/woman.jpeg" alt="image femme" class="imgbouton">
 | |
|                     <p>Trouver une femme</p>
 | |
|                 </a>
 | |
|                 <a href="for.php?gender=man" class="tuile">
 | |
|                     <img src="img/man.jpg" alt="image homme" class="imgbouton">
 | |
|                     <p>Trouver un homme</p>
 | |
|                 </a>
 | |
|         </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>
 |