1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+
4+ < head >
5+ < meta charset ="UTF-8 ">
6+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
7+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
8+ <!-- Favicon -->
9+ < link rel ="icon " type ="image/png " sizes ="32x32 " href ="../favicon/ms-icon-32x32.png ">
10+ < link rel ="apple-touch-icon " sizes ="60x60 " href ="../favicon/apple-icon-60x60.png ">
11+ <!-- Fuentes -->
12+ < link rel ="preconnect " href ="https://fonts.googleapis.com ">
13+ < link rel ="preconnect " href ="https://fonts.gstatic.com " crossorigin >
14+ < link href ="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap " rel ="stylesheet ">
15+ <!-- Hojas de estilos -->
16+ < link href ="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css " rel ="stylesheet "
17+ integrity ="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM " crossorigin ="anonymous ">
18+ < link rel ="stylesheet " href ="./styles.css ">
19+ < title > Nav Bar</ title >
20+ </ head >
21+
22+ < body >
23+ < header >
24+ < nav class ="navbar navbar-expand-md bg-body-tertiary fixed-top ">
25+ < div class ="container-fluid ">
26+ < a class ="navbar-brand ms-md-5 text-uppercase " href ="# "> The Nav Bar</ a >
27+ < button class ="navbar-toggler " type ="button " data-bs-toggle ="offcanvas " data-bs-target ="#offcanvasNavbar " aria-controls ="offcanvasNavbar " aria-label ="Toggle navigation ">
28+ < span class ="navbar-toggler-icon "> </ span >
29+ </ button >
30+ < div class ="offcanvas offcanvas-end " tabindex ="-1 " id ="offcanvasNavbar " aria-labelledby ="offcanvasNavbarLabel ">
31+ < div class ="offcanvas-header ">
32+ < button type ="button " class ="btn-close " data-bs-dismiss ="offcanvas " aria-label ="Close "> </ button >
33+ </ div >
34+ < div class ="offcanvas-body ">
35+ < ul class ="navbar-nav me-md-5 justify-content-end flex-grow-1 pe-3 ">
36+ < li class ="nav-item ">
37+ < a class ="nav-link active " aria-current ="page " href ="# "> Home</ a >
38+ </ li >
39+ < li class ="nav-item ">
40+ < a class ="nav-link " href ="# "> About me</ a >
41+ </ li >
42+ < li class ="nav-item ">
43+ < a class ="nav-link " href ="# "> Contact</ a >
44+ </ li >
45+ < li class ="nav-item ">
46+ < a class ="nav-link " href ="# "> CV</ a >
47+ </ li >
48+ </ ul >
49+ </ div >
50+ </ div >
51+ </ div >
52+ </ nav >
53+ </ header >
54+
55+ < script src ="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js "
56+ integrity ="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz "
57+ crossorigin ="anonymous "> </ script >
58+ </ body >
59+
60+ </ html >
0 commit comments