Hello everyone,
I have completed my Product-Landing Page project. Please provide your feedback and criticism also
please check my work on flexbox in the project (i was practicing flexbox concepts).
Changed my navigation look below 480px. But not able to fix that header element.
As I have written in code: #header{ position: fixed } header is stuck with about section leaving some white space on top. Need the advice to solve that problem.
What I would do is put the 2 containers on top of each other and the li elements an inline-block.
Would make the list look like that under the text:
EDIT:
Forgot to say you have a few semantic problems.
The italic text in your workout section is wrapped in a “em” element only. The “em” element is used to emphasize a text and it default make the text italic but it should be used to tell the browser that this text is important in your page. This shouldn’t be used only to style the text.
A correct way of making your text in italic would be to wrap it in a “p” element and add a class for it like this:
<p class="italic">text text<p>
and css
.italic {
font-style: italic;
}
The same goes for the “strong” tag, you have many elements wrapped only in strong inside a div (example: the 100$ in the pricing part).
Thank You for all your feedback…!!
I cleared out all the bugs and taken all your suggestions for improvement. If you can please point out any additional bugs or points for me to work on.
You could fix this by setting: #about { margin-top: 100px; } then I noticed this messes up your background-color so you can set this on the html rather than on your #wrap class like so: html { background-color: #F5F5F5; }