Initializing
Liveweave
Web
expand_more
home
Home
data_object
CSS Explorer
arrow_outward
Palette
Color Explorer
arrow_outward
Polyline
Graphics Editor
arrow_outward
outbox_alt
Generative AI
arrow_outward
frame_source
Python Playground
New
arrow_outward
build
Tools
expand_more
restart_alt
Load "Hello Weaver!"
post_add
Generate Lorem ipsum...
code
Format HTML
code_blocks
Format CSS
data_object
Format JavaScript
library_add
Library
expand_more
A
Algolia JS
Animate CSS
Apex Charts JS
B
Bulma CSS
Bootstrap
C
Chart JS
Chartist
Create JS
D
D3
Dojo
F
Foundation
Fullpage JS
G
Granim JS
Google Charts
H
Halfmoon
J
jQuery
M
Materialize
Moment JS
Masonry JS
Milligram CSS
P
Pure CSS
Primer CSS
Popper JS
Pattern CSS
Picnic CSS
R
React JS
Raphael JS
Raisin CSS
S
Semantic UI
Skeleton CSS
Spectre CSS
Tachyons CSS
T
Tailwind
Three JS
U
UI Kit
Vis JS
W
Water CSS
download
Download
expand_more
developer_mode
Download as HTML
folder_zip
Download as .ZIP
cloud_upload
Save
account_circle
Login
settings
Settings
expand_more
14
px
Live mode
Night mode
Line number
Mini map
Word wrap
sync_alt
Reset Settings
smart_display
Run
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Footer</title> </head> <body> <div id="wrapper"> <!--Header Start--> <div id="header"><h1 style="margin:0;color:white;margin-left:20px;line-height:50px;">Logo,Click to add more content</h1></div> <div style="width:100%;height:50px;"></div> <!--Options Start--> <div id="options"></div> <!--Content Start--> <div id="content"> Filled Content Area<br> </div> <!--Footer Start--> <div id="footer"> <h1>Click to reset content</h1> </div> </div> </body> </html>
html,body{ height: 100%; margin: 0; } #wrapper{ position: relative; min-height: 100%; } #header{ width: 100%; height: 50px; background: #1a73f8; position: fixed; } #options{ width: 270px; height: 410px; background: white; border: 1px solid #e3e3e3; position: fixed; } #content{ width: 1000px; margin-left: 290px; border: 1px solid #e3e3e3; box-shadow: .2px .2px 1px 1px #e3e3e3; margin-top: 20px; } #footer{ width: 100%; height: 140px; background: #1a73f8; color: white; position: absolute; bottom: 0; }
document.getElementById("header").addEventListener("click",function(){ document.getElementById("content").innerHTML+="Filled Content Area<br>"; }, false); document.getElementById("footer").addEventListener("click",function(){ document.getElementById("content").innerHTML="Filled Content Area<br>"; },false);