/ Published in: HTML
This is the basic html structure for a Banner.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<!DOCTYPE html> <html> <head> <html lang="en"> <meta name="author" content="Das Banner"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Google Enabler --v --> <!-- Animation --v --> <!--CDN links for the latest TweenLite, CSSPlugin, and EasePack --v --> <script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/latest/plugins/CSSPlugin.min.js"> </script> <script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/latest/easing/EasePack.min.js"> </script> <!--LOCAL TweenLite, CSSPlugin, and EasePack --v --> <!-- <script type="text/javascript" src="TweenLite.min.js"></script> <script type="text/javascript" src="CSSPlugin.min.js"></script> <script type="text/javascript" src="EasePack.min.js"></script> <script type="text/javascript" src="TimelineLite.min.js"></script> --> <!-- CSS --v --> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body id="container"> <div id="banner"> <img id="bgImage" src="bgImg.jpg"> </div> </body> </html>