-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (24 loc) · 1.04 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.5.0/p5.js"></script>
<link rel="stylesheet" type="text/css" href="src/styles/style.css">
<script src="https://cdn.tailwindcss.com"></script>
<meta charset="utf-8" />
<title>Sex Info</title>
</head>
<body>
<main>
<nav class="bg-white shadow dark:bg-gray-800">
<div class="container flex items-center justify-center p-6 mx-auto text-gray-600 capitalize dark:text-gray-300">
<a href="index.html" class="text-gray-800 transition-colors duration-300 transform dark:text-gray-200 border-b-2 border-blue-500 mx-1.5 sm:mx-6">home</a>
<a href="src/game.html"
class="border-b-2 border-transparent hover:text-gray-800 transition-colors duration-300 transform dark:hover:text-gray-200 hover:border-blue-500 mx-1.5 sm:mx-6">
Jouer au jeu de la séxualité
</a>
</div>
</nav>
<img src="img/homepage.jpg" alt="">
</main>
</body>
</html>