-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (29 loc) · 1.37 KB
/
index.html
File metadata and controls
37 lines (29 loc) · 1.37 KB
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="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>John Doe - Portfolio Moderne</title>
<meta name="description" content="Un portfolio moderne et interactif.">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="canvas-container"></div>
<header class="container mt-4">
<nav class="nav nav-pills justify-content-center">
<a class="nav-link" href="#home">Accueil</a>
<a class="nav-link" href="#about">À propos</a>
<a class="nav-link" href="#portfolio">Portfolio</a>
<a class="nav-link" href="#news">Actualités</a>
</nav>
</header>
<main id="main-content" class="container"></main>
<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="main.js"></script>
</body>
</html>