-
Notifications
You must be signed in to change notification settings - Fork 78
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
Cedar - Jessica Carnes - Weather Report #75
base: main
Are you sure you want to change the base?
Conversation
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.
Great job!
A few small notes, but overall things look pretty good!
Well done!
</header> | ||
<main> | ||
<section id=temperature class="small_box tempBox"> | ||
<h2 id=tempTitle>TEMPERATURE</h2> |
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.
You skipped directly to a <h2>
without having an <h1>
. Your heading tags should be able to be used to create a table of contents so it's important not to skip levels.
<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 href="../styles/index.css" rel="stylesheet" /> |
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.
Your imports appear to be off by a folder:
<link href="../styles/index.css" rel="stylesheet" /> | |
<link href="./styles/index.css" rel="stylesheet" /> |
<script | ||
src="../scripts/index.js"> |
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.
<script | |
src="../scripts/index.js"> | |
<script | |
src="./scripts/index.js"> |
/* grid-template-areas: | ||
". . . ." | ||
"tempTitle tempTitle tempTitle tempTitle" | ||
". tempButtons . tempValue ." | ||
". tempButtons . tempValue ."; */ |
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.
Style: It's a best practice to remove commented out code.
No description provided.