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> <head> <title>HTML, CSS and JavaScript demo</title> </head> <body> <div class="container"> <header> Header goes here </header> <div class="video-container"> <div class="video"> <iframe src="https://player.vimeo.com/video/166807261?color=c9ff23" width="960" height="540" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen> </iframe> </div> </div> </div> <div class="grid-container"> <!-- <LEFT COLUMN> --> <div class="grid-item"> <div class="video-info-container"> <!-- <TITLE> --> <div class="video-title-container"> <h1>Hyper-Reality</h1> </div> <div class="video-posting-container"> <span>2 years ago</span> | <a href="#">More</a> </div> <!-- <PROFILE> --> <div class="video-profile-info-container"> <div class="video-profile-info-name"> <img src="https://i.vimeocdn.com/portrait/8701762_75x75.webp" /> <span>Keiichi Matsuda</span><span class="vimeo-plus">Plus</span> </div> <div class="follow-container"> <button>+ Follow</button> </div> </div> </div> <!-- <STATS> --> <div class="video-stats-container"> <div class="grid-item"> 3.3M | 20.K | 1,319 | 401 </div> <div class="grid-item"> Download | Share </div> </div> <!-- <DESCRIPTION> --> <div class="video-description-container"> <p> Hyper-Reality presents a provocative and kaleidoscopic new vision of the future, where physical and virtual realities have merged, and the city is saturated in media. If you are interested in supporting the project, sponsoring the next work or would like to find out more, please send a hello to info@km.cx</p> <p>by Keiichi Matsuda | km.cx<br /> more at hyper-reality.co </p> </div> <!-- <CREDITS> --> <div class="video-credits-container"> <div class="grid-item"> 2 Credits </div> <div class="grid-item"> 2 Categories </div> </div> </div> <!-- </LEFT COLUMN> --> <!-- <RIGHT COLUMN> --> <div class="grid-item"> <h3>More from Keiichi Matsuda</h3> <p>Autoplay next video</p> <div class="other-videos-container"> <div class="other-video"> <div> <img src="https://i.vimeocdn.com/video/571534199_130x73.jpg" /> </div> <div> <h5>HYPER-REALITY</h5> <h6><a href="#">Keiichi Matsuda</a></h6> </div> </div> </div> </div> <!-- </RIGHT COLUMN> --> </div> <!-- End your code here --> </body> </html>
.container header{ width: 100%; height: 100px; background-color: #CCC; } .video-container{ background-color: #000; width: 100%; } .video{ max-width: 960; margin: 0 auto; } .grid-container{ display: grid; grid-template-columns: 75% 25%; } .video-profile-info-container div { display: inline-block; } .video-profile-info-container img{ width: 30px; height: 30px; border-radius: 100%; position: relative; top: 10px; } .video-stats-container{ display: grid; grid-template-columns: 75% 25%; } .video-credits-container{ display: grid; grid-template-columns: 50% 50%; } .other-video{ display: grid; grid-template-columns: 75px 165px; } .other-video img{ width: 100%; }
// Write JavaScript here