Youtube video auto play and loop
<p><iframe width=”1920″ height=”1080″ src=”https://www.youtube.com/embed/[insertvideoid]?controls=1&showinfo=0&rel=0&autoplay=1&loop=1&mute=1&modestbranding=1&fs=0&disablekb=1&list=[insertplaylistid]” frameborder=”0″></iframe></p>
Full page width responsive youtube video
<div class="videoWrapper"> <!-- Copy & Pasted from YouTube --> <iframe width="560" height="349" src="http://www.youtube.com/embed/n_dZNLr2cME?rel=0&hd=1" frameborder="0" allowfullscreen></iframe> </div>
How to show text on image when hovering?
Show a description when hovering over an image. Wrap the image and the “appear on hover” description in a div with the same dimensions of the image. Then, with some CSS, order the description to appear while hovering that div. This post worked for me. https://stackoverflow.com/questions/26343556/move-text-up-over-image-on-hover
Add a favicon to your page
Saving it in the same directory as the site’s index page, saved in .ico format (most browsers will support favicons in more common formats like .gif or .png, but using the ICO format will ensure it works as far back as Internet Explorer 6.) Adding the following line into your HTML’sblock to reference it: <link rel=”shortcut icon” href=”favicon.ico” type=”image/x-icon”>
HTML Page default template
<!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>My test page</title> </head> <body> <p>This is my page</p> </body> </html>