Here are some few bugs you need to fix
-
There's is a section element just under <body> in your html. You should delete that.
-
You can delete article element too. it's not really needed in this kind of project.
-
You put your <h1> element in <p> element. it should be something like
<h1>Gabrielle Essence Eau De Parfum </h1>
<p class="paragraph">A floral, solar and voluptuous interpretation composed by Olivier Polge, Perfumer-Creator for the House of CHANEL.</p>
in your CSS
- You can remove this code.
border: 0;
outline: 0;
text-decoration: none;
list-style: none;
you should always try to put these sort of specific code on the elements you want them to be on.
2.Before you begin each project, you must first read your style-guide. The style-guide in this challenge states that you use
Family: [Montserrat](https://fonts.google.com/specimen/Montserrat)
- Weights: 500, 700
- Family: [Fraunces](https://fonts.google.com/specimen/Fraunces)```
- Weights: 700
How to add these font to your project?
watch this tutorial
There are so much more improvement to be made, you just need to continue learning.