-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
9.3 Weather App Project #28
base: main
Are you sure you want to change the base?
Conversation
…ml. moved Selectors outside of API Fetch to avoid duplicating elements
…e <li> elements. Added hidden attribute to conversion widget temporarily until JS Functionality is added. Elements with temperature values also now contain a ° (degree) symbol.
…e file added for list marker.
<!--Contains current weather--> | ||
<section class="current"> | ||
<p class="empty">Choose a location to view the weather</p> | ||
<article class="current" hidden />Current Forecast<br> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i believe this hidden element is contributing to you failing some of the tests. I'm not sure what the original intent was here but if it's not necessary it might be worth removing.
also the article
tag needs a closing tag. <article />
doesn't work with this element.
<article class="tomorrow" id="tomorrow"><strong class="headings">Tomorrow</strong></article> | ||
<article class="day-after-tm" id="day-after-tm"><strong class="headings">Day After Tomorrow</strong></article> | ||
</div> | ||
</article> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am unsure where the opening tag is for this closing aside
tag
By no means do I consider this project finished– I've struggled so much with trying to removing duplicate list items, and the conversion widget is currently unavailable. However, I'm coming back to this project very soon to ensure that it not only passes all tests, but that it's fully functional, once my portfolio project is complete.
But if I can get this much done in a week after 3-ish months of coding, I'm excited for what I'll be able to do 3 more months from now!