Please check out my Tribute page and let me know what i should work on.
Thank You!
Please check out my Tribute page and let me know what i should work on.
Thank You!
Pretty cool! I would,
give 0 to paddings and margins, your background leaks to the left.
give some padding to your timeline section.
Find out More link should be smaller.
Well done
Thank You! that was something that I was trying to figure out but slightly gave up on to finish the project, I appreciate the help.
Hello @taty2010,
Element “title” must not be empty.
From line 6 to line 6:
<title></title>
Bad value “https://fonts.googleapis.com/css?family=Carter+One|Patrick+Hand” for attribute “href” on element “link”: Illegal character in query: “|” is not allowed.
From line 14 to line 14:
<link href="https://fonts.googleapis.com/css?family=Carter+One|Patrick+Hand" rel="stylesheet">
From Stackoverflow:
The offending character here is “|” U+007C VERTICAL LINE, used by Google as a separator between font names; that’s a poor choice by them, since “|” is a reserved character, both by the “URL Living Standard” (which is what the HTML5 CR cites) and by the Internet-standard STD 66 (RFC 3986).
No space between attributes.
From line 75 to line 75:
<img class="chihiro"src= "https:/ /www.dropbox.com/s/qp0m5i6x397k5v4/1495065388121_248719_cops_6.jpg?raw=1" alt="spirited Away">
Stray start tag “script”. ( tag is outside
</body>
)
From line 80 to line 80:
</body>
<script src="js/vendor/modernizr-3.6.0.min.js"></script>
This document appears to be written in English. Consider adding “lang=“en”” (or variant) to the “html” start tag.
cheers and happy codding
Note:
Tools used:
[w3c markdown checker web service] (Service » Input » POST body · validator/validator Wiki · GitHub)
W3C validate by input:
W3C validate by file:
Video:
It seems you are scaling your fonts the wrong way. Taking your h3
font size that normally is set to font-size: 1.5vw;
it jumps right to font-size: 2.8vw;
when your media query rule activates.
Maybe reading this article on scaling typography will help you in making a better decision.
Otherwise, really nice page. Happy coding.
Thank you for pointing that out, the article is really helpful.