-
Notifications
You must be signed in to change notification settings - Fork 508
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
Human-Rights-01 #693
base: master
Are you sure you want to change the base?
Human-Rights-01 #693
Conversation
provolovskyi-illia
commented
Mar 22, 2021
- DEMO LINK
- TEST REPORT LINK
src/index.html
Outdated
effective recognition and observance, both among the peoples of Member States | ||
themselves and among the peoples of territories under their jurisdiction. | ||
</p> | ||
<h2 class="style-article">Article 1</h2> |
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.
style-article is not the best class name, let's rename to subtitle
src/index.html
Outdated
<li> | ||
Everyone charged with a penal offence has the right to be presumed | ||
innocent until proved guilty according to law in a public trial at which he | ||
has had all the guarantees necessary for his defence. | ||
</li> |
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.
don't forget about indentation for text
<li> | |
Everyone charged with a penal offence has the right to be presumed | |
innocent until proved guilty according to law in a public trial at which he | |
has had all the guarantees necessary for his defence. | |
</li> | |
<li> | |
Everyone charged with a penal offence has the right to be presumed | |
innocent until proved guilty according to law in a public trial at which he | |
has had all the guarantees necessary for his defence. | |
</li> |
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.
fix everywhere
src/style.css
Outdated
font-weight: normal; | ||
} | ||
|
||
.style-link { |
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.
just link
src/style.css
Outdated
|
||
.heading { | ||
font-size: 17px; | ||
font-weight: bold; |
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.
font-weight: bold is a default setting for h1, remove
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.
corrected all comments
html { | ||
margin: 0; | ||
} |
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.
it's better to add margin: 0 to specific elements
like this
.heading,
.paragraph {
margin: 0;
}