|
8 | 8 | <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"><!--Insert boostrap link--> |
9 | 9 | <link href="https://cdn.jsdelivr.net/npm/boxicons@2.1.1/css/boxicons.min.css" rel="stylesheet"><!--Insert boxicon link--> |
10 | 10 | <script src="jquery/jquery3.7.1.js"></script><!--Link to Jquery script file--> |
| 11 | + <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script><!--Insert bootstrap script link--> |
11 | 12 | </head> |
12 | 13 | <body> |
13 | 14 | <header> |
14 | 15 | <!--Insert bootstrap nav bar--> |
15 | 16 | <nav class="navbar navbar-expand-lg navbar-light bg-primary"> |
16 | 17 | <a class="navbar-brand" href="index.html">Weather App <i class='bx bxs-sun' ></i></a> |
17 | | - <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation"> |
| 18 | + <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation"> |
18 | 19 | <span class="navbar-toggler-icon"></span> |
19 | 20 | </button> |
20 | 21 | <div class="collapse navbar-collapse" id="navbarNavAltMarkup"> |
|
30 | 31 | <!--Create weather app container--> |
31 | 32 | <section class="weatherContainer"> |
32 | 33 | <h2>The Weather</h2> |
| 34 | + |
33 | 35 | </section> |
34 | 36 |
|
35 | 37 | <!--Create about Section--> |
36 | 38 | <section id="about" class="aboutContainer"> |
37 | 39 | <h2>About Weather App</h2> |
| 40 | + |
| 41 | + <!--Create about text container--> |
| 42 | + <div class="textContainer"> |
| 43 | + <img src="images/cartoonSunNoBg.png" alt="Weather App"> |
| 44 | + |
| 45 | + <p> |
| 46 | + The Purpose of this application is to help the user know what is the weather |
| 47 | + in other regions of the world. This app will also display the img of what the weather is like in that region. |
| 48 | + Furthermore, I will display the temperature of what that current region is when the user searches up that region of the world. |
| 49 | + </p> |
| 50 | + </div> |
38 | 51 | </section> |
39 | 52 | </main> |
40 | 53 | <footer> |
|
0 commit comments