Hi. I would like assessment.
Thank you in advance.
Hello @odpinerosh, this looks pretty good to me ! Watch out though, to import several google fonts with a single
<link>
tag, you should separate font names with a pipe (|
) symbol and not with a semi-colon (;
)
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300|Cinzel+Decorative:700" rel="stylesheet">
Thank you, good advice.
Actually it’s better to encode pipe in the URL
thank you @aviv.mu for that piece of information , I did not know about unsafe characters in URLs and URIs.