Skip to content

Commit 4fbb16c

Browse files
committed
add text container, sun img, and container text
1 parent ebef8df commit 4fbb16c

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

weatherApp/index.html

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@
88
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"><!--Insert boostrap link-->
99
<link href="https://cdn.jsdelivr.net/npm/boxicons@2.1.1/css/boxicons.min.css" rel="stylesheet"><!--Insert boxicon link-->
1010
<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-->
1112
</head>
1213
<body>
1314
<header>
1415
<!--Insert bootstrap nav bar-->
1516
<nav class="navbar navbar-expand-lg navbar-light bg-primary">
1617
<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">
1819
<span class="navbar-toggler-icon"></span>
1920
</button>
2021
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
@@ -30,11 +31,23 @@
3031
<!--Create weather app container-->
3132
<section class="weatherContainer">
3233
<h2>The Weather</h2>
34+
3335
</section>
3436

3537
<!--Create about Section-->
3638
<section id="about" class="aboutContainer">
3739
<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>
3851
</section>
3952
</main>
4053
<footer>

0 commit comments

Comments
 (0)