-
Notifications
You must be signed in to change notification settings - Fork 85
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- Roza #61
base: main
Are you sure you want to change the base?
Cedar- Roza #61
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.
Good job!
It seems like you're still struggling a little with semantic tags and class names but overall things look pretty good! (These problems are really common when learning HTML so you aren't alone.)
<!-- <div id ="lovely-city"> For the lovely city of</div> | ||
<div id ="header-city">here change the city dynamically</div> --> | ||
</section> | ||
<section id ="whole-body"> |
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.
This probably wants to be a main
tag:
<section id ="whole-body"> | |
<main> |
</head> | ||
<body> | ||
|
||
<section id ="headers"> |
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.
Instead of using a section with an id of headers you should instead use a header tag:
<section id ="headers"> | |
<header> |
</head> | ||
<body> | ||
|
||
<section id ="headers"> | ||
<div id ="weather-header"><span class='bigger'>Weather Report</span> |
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.
Generally we try to avoid using something like bigger
as a class name. That way if instead of making the text bigger we decide to make it bold we don't have to rename everything:
<div id ="weather-header"><span class='bigger'>Weather Report</span> | |
<div id ="weather-header"><span class='title'>Weather Report</span> |
No description provided.