-
Notifications
You must be signed in to change notification settings - Fork 527
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mikelle Wade
committed
Oct 23, 2024
1 parent
eb1fdab
commit 86c58b7
Showing
9 changed files
with
7 additions
and
91 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Weather Report</title><link rel="preconnect" href="https://fonts.gstatic.com"><link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet"><link rel="stylesheet" href="/weather-report/styles.a8697f7a.css"></head><body> <header class="header__header"> <h1>Weather Report</h1> <span>For the lovely city of <span id="headerCityName" class="header__city-name"></span></span> </header> <section class="temperature__section"> <h2>Temperature</h2> <div class="temperature__content"> <div class="temperature__controls"> <span id="increaseTempControl">⬆️</span> <span id="tempValue"></span> <span id="decreaseTempControl">⬇️</span> </div> <button id="currentTempButton">Get Realtime Temperature</button> </div> </section> <section class="sky__section"> <h2>Sky</h2> <select id="skySelect"> <option>Sunny</option> <option>Cloudy</option> <option>Rainy</option> <option>Snowy</option> </select> </section> <section class="city-name__section"> <h2>City Name</h2> <input type="text" id="cityNameInput" value="Seattle"> <button id="cityNameReset" class="city-name__reset-btn">Reset</button> </section> <section class="garden__section"> <h2>Weather Garden</h2> <div id="gardenContent" class="garden__content"> <div id="sky"></div> <div id="landscape"></div> </div> </section> <script src="/weather-report/src.8b33c05a.js"></script> </body></html> | ||
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Weather Report</title><link rel="preconnect" href="https://fonts.gstatic.com"><link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet"><link rel="stylesheet" href="/weather-report/index.1fe16f44.css"></head><body> <h1 class="header" id="header_id1"> Today's Weather Report </h1> <h3 class="header" id="header_id2"> For The Lovely City of <span id="header-city">Atlanta</span></h3> <h4 id="temp">Temperature</h4> <button id="up">⬆</button> <p id="temperature-now"></p> <button id="down">⬇</button> <button id="real-time-temp">Get Real Time Temperature</button> <form id="cityinput"> City: <input id="city" type="text" placeholder="Enter a city"> </form> <button id="defaultCity">Reset</button> <h4 id="garden"></h4> <span id="weather-garden"></span> <h4 id="sky"></h4> <select id="sky-drop-down"> <option value="Sunny">Choose Your Sky</option> <option value="Sunny">Sunny</option> <option value="Cloudy">Cloudy</option> <option value="Snowy">Snowy</option> <option value="Rainy">Rainy</option> </select> <script type="module" src="/weather-report/index.6fd2232c.js"></script> </body></html> |
Oops, something went wrong.