Skip to content
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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

Cedar- Roza #61

wants to merge 3 commits into from

Conversation

haset-19
Copy link

No description provided.

Copy link

@kaidamasaki kaidamasaki left a 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">

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:

Suggested change
<section id ="whole-body">
<main>

</head>
<body>

<section id ="headers">

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:

Suggested change
<section id ="headers">
<header>

</head>
<body>

<section id ="headers">
<div id ="weather-header"><span class='bigger'>Weather Report</span> &nbsp;&nbsp;

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:

Suggested change
<div id ="weather-header"><span class='bigger'>Weather Report</span> &nbsp;&nbsp;
<div id ="weather-header"><span class='title'>Weather Report</span> &nbsp;&nbsp;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants