1+ <!doctype html>
2+ < html lang ="en ">
3+ < head >
4+ <!-- Required meta tags -->
5+ < meta charset ="utf-8 ">
6+ < meta name ="viewport " content ="width=device-width, initial-scale=1 ">
7+
8+ <!-- Bootstrap CSS -->
9+ < link href ="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css " rel ="stylesheet " integrity ="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1 " crossorigin ="anonymous ">
10+ < link rel ="stylesheet " href ="style.css ">
11+ < title > Hello, world!</ title >
12+ </ head >
13+ < body >
14+ < nav class ="navbar navbar-expand-lg navbar-dark bg-dark "">
15+ < div class ="container-fluid ">
16+ < a class ="navbar-brand " href ="# "> Navbar</ a >
17+ < button class ="navbar-toggler " type ="button " data-bs-toggle ="collapse " data-bs-target ="#navbarSupportedContent " aria-controls ="navbarSupportedContent " aria-expanded ="false " aria-label ="Toggle navigation ">
18+ < span class ="navbar-toggler-icon "> </ span >
19+ </ button >
20+ < div class ="collapse navbar-collapse " id ="navbarSupportedContent ">
21+ < ul class ="navbar-nav me-auto mb-2 mb-lg-0 ">
22+ < li class ="nav-item ">
23+ < a class ="nav-link active " aria-current ="page " href ="# "> Home</ a >
24+ </ li >
25+ < li class ="nav-item ">
26+ < a class ="nav-link " href ="# "> Link</ a >
27+ </ li >
28+ < li class ="nav-item dropdown ">
29+ < a class ="nav-link dropdown-toggle " href ="# " id ="navbarDropdown " role ="button " data-bs-toggle ="dropdown " aria-expanded ="false ">
30+ Dropdown
31+ </ a >
32+ < ul class ="dropdown-menu " aria-labelledby ="navbarDropdown ">
33+ < li > < a class ="dropdown-item " href ="# "> Action</ a > </ li >
34+ < li > < a class ="dropdown-item " href ="# "> Another action</ a > </ li >
35+ < li > < hr class ="dropdown-divider "> </ li >
36+ < li > < a class ="dropdown-item " href ="# "> Something else here</ a > </ li >
37+ </ ul >
38+ </ li >
39+ < li class ="nav-item ">
40+ < a class ="nav-link disabled " href ="# " tabindex ="-1 " aria-disabled ="true "> Disabled</ a >
41+ </ li >
42+ </ ul >
43+ < form class ="d-flex ">
44+ < input class ="form-control me-2 " type ="search " placeholder ="Search " aria-label ="Search ">
45+ < button class ="btn btn-outline-success " type ="submit " > Search</ button >
46+ < div class ="mybutton " onclick ="theme() "> change theme</ div >
47+ </ form >
48+ </ div >
49+ </ div >
50+ </ nav >
51+
52+
53+
54+ < div class ="container-fluid base ">
55+ < div class ="clock " id ="clock ">
56+
57+ </ div >
58+ < div class ="name ">
59+ < p > Clock</ p >
60+ </ div >
61+ </ div >
62+ <!-- Optional JavaScript; choose one of the two! -->
63+
64+ <!-- Option 1: Bootstrap Bundle with Popper -->
65+ < script src ="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js " integrity ="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW " crossorigin ="anonymous "> </ script >
66+ < script src ="index.js "> </ script >
67+ <!-- Option 2: Separate Popper and Bootstrap JS -->
68+ <!--
69+ <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js" integrity="sha384-q2kxQ16AaE6UbzuKqyBE9/u/KzioAlnx2maXQHiDX9d4/zp8Ok3f+M7DPm+Ib6IU" crossorigin="anonymous"></script>
70+ <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.min.js" integrity="sha384-pQQkAEnwaBkjpqZ8RU1fF1AKtTcHJwFl3pblpTlHXybJjHpMYo79HY3hIi4NKxyj" crossorigin="anonymous"></script>
71+ -->
72+
73+ </ body >
74+ </ html >
0 commit comments