Skip to content

Cedar- Roza#61

Open
haset-19 wants to merge 3 commits intoAda-C16:mainfrom
haset-19:main
Open

Cedar- Roza#61
haset-19 wants to merge 3 commits intoAda-C16:mainfrom
haset-19:main

Conversation

@haset-19
Copy link
Copy Markdown

No description provided.

Copy link
Copy Markdown

@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.)

Comment thread index.html
<!-- <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">
Copy link
Copy Markdown

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>

Comment thread index.html
</head>
<body>

<section id ="headers">
Copy link
Copy Markdown

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>

Comment thread index.html
<body>

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

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