I would like to have an assessment. Regards.
You can find the source code here (in CodePen):
Source Code (HTML and CSS)
I would like to have an assessment. Regards.
You can find the source code here (in CodePen):
Source Code (HTML and CSS)
Hi @ilkert and welcome to the community
Congratulations on your work!
Overall you did a really great job!
Some remarks:
<link>
tag to import fonts, it is not necessary to also include the @font-face
block in your CSS. You can see what gets imported by opening the URL in the <link>
tag in your browser. Google generates the appropriate @font-face
blocks for you.section h1 + p
isn’t needed since we only use <h1>
in the <header>
background-image: url("https://mdn.github.io/learning-area/css/styling-text/typesetting-a-homepage-start/external-link-52.png");
I hope my feedback helps. If you have any more questions or tasks, I’m happy to look at them.
Have a nice day!
Michael
PS: You used your email address as your real name. As anyone here can see it, I recommend removing it to prevent spam.
Hello Michael,
Thanks for the warm welcome and your time for reviewing my work!
About font-faces, first I decided to put it in html but then changed my mind and use @font-faces in CSS. Then I forgot to remove the first one
h1 + p
is added just in case for future use
Next time I will remember to add images/icons via external link when it is needed.
And yeah, I HAVE TO change that e-mail appearance. Thanks for the warning
The classic thing about old, unused code lying around. That’s how it starts
As a side note regarding images. There are other task which make use of several images. When tackling such task it may be helpful to check out glitch.com. It’s another online code editor that allows uploading files. When all files are there you can just refer them locally in the project.
That’s very good to know now about glitch.com. Thank you very much!