Lorky

Discontinued navbar | HTML

Dec 26th, 2022
1,336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.08 KB | Source Code | 0 0
  1.  <!-- HTML -->
  2.  
  3. <body>
  4.     <nav class="nav-bar">
  5.       <ul>
  6.     <li><button class="nav-btn" data-section="accueil"><span class="emoji">🏠</span> <span class="text">Accueil</span></button></li>
  7.     <li><button class="nav-btn" data-section="projets"><span class="emoji">🚀</span> <span class="text">Projets</span></button></li>
  8.     <li><button class="nav-btn" data-section="a-propos"><span class="emoji">🧑</span> <span class="text">À propos</span></button></li>
  9.     <li><button class="nav-btn" data-section="contact"><span class="emoji">📬</span> <span class="text">Contact</span></button></li>
  10.   </ul>
  11.     </nav>
  12.    
  13.     <section class="accueil active">
  14.       <!-- Contenu de la section Accueil -->
  15.       aa
  16.     </section>
  17.     <section class="projets">
  18.       <!-- Contenu de la section Projets -->
  19.       bb
  20.     </section>
  21.     <section class="a-propos">
  22.       <!-- Contenu de la section À propos -->
  23.       cc
  24.     </section>
  25.     <section class="contact">
  26.       <!-- Contenu de la section Contact -->
  27.       dd
  28.     </section>
  29.   </body>
  30.   <script src="./main.js"></script>
Advertisement
Add Comment
Please, Sign In to add comment