Search This Blog
Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts
Thursday, November 14, 2013
HyperText Markup Language (HTML)
HyperText Markup Language (HTML) is markup language used for creating web pages and other data that can be displayed in a web browser.
Etichete:
HTML
Fix div at the bottom of the page
HTML > DIV > Fix at the bottom of the page
<head>
<title></title>
</head>
<body>
Content
<div style="position: fixed; bottom: 0px;">
This is div fixed at the bottom of the page</div>
</body>
</html>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<title></title>
</head>
<body>
Content
<div style="position: fixed; bottom: 0px;">
This is div fixed at the bottom of the page</div>
</body>
</html>
Etichete:
HTML
Subscribe to:
Posts (Atom)