html body { margin-top: 50px !important; } #top_form { position: fixed; top:0; left:0; width: 100%; margin:0; z-index: 2100000000; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -o-user-select: none; border-bottom:1px solid #151515; background:#FFC8C8; height:45px; line-height:45px; } #top_form input[name=url] { width: 550px; height: 20px; padding: 5px; font: 13px "Helvetica Neue",Helvetica,Arial,sans-serif; border: 0px none; background: none repeat scroll 0% 0% #FFF; }
HTML5 Self Study
HTML5 Self Study
HTML5 Self Study
What is Bootstrap ?
bootstrap/
├── css/
│ ├── bootstrap.css
│ ├── bootstrap.css.map
│ ├── bootstrap.min.css
│ └── bootstrap.min.css.map
└── js/
├── bootstrap.js
└── bootstrap.min.js
Embedding Bootstrap in HTML5 document
Write the basic structure of HTML markup. This should look like this.
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
In between the <head> and </head> tags is where we will write the <meta>
tags and the <link> tags. The content of the website is written within the <body>
tags.
THANK YOU