https://codepen.io/matthew-pourroy/pen/ZEpxrWG
It seems to look work well on the desktop but not on mobile. Any feedback about that or anything else?
https://codepen.io/matthew-pourroy/pen/ZEpxrWG
It seems to look work well on the desktop but not on mobile. Any feedback about that or anything else?
font-size
for the navigator in the media.width="630" height="400"
in video tag and size yourself in css.630:400
!
#submit
in the media.Hope This Help
One more piece of advice. Always use a narrow-first design approach. Narrow your browser as far as it will go and style the page so it looks good at that narrow width. This will be your base CSS.
Then you can gradually widen the browser window and make adjustments for wider widths using break points.
Some things to revisit @pourroy.matt.
First, Codepen provides the boilerplate for you. It only expects the code you’d put within the body
element in HTML. (No need to include the body
tags). For anything you want to add to the <head>
element click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
body
element. You have a footer
element outside the body
. Review this for an understanding of the HTML boilerplate tags.Run your HTML code through the W3C validator.
Make your page responsive. Remember, the R in RWD stands for Responsive
On responsiveness, start by styling for a narrow view port first. Narrow your browser as far as it will go and style the page so it looks good at that narrow width. Then gradually widen your browser and use CSS media query break points to adjust the style for wider view ports if needed.