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>Genspace Eblast-not real design</title> </head> <!-- Start your code here --> <body> <div class="container"> <img src="http://static1.squarespace.com/static/588b7cc315d5dbdea1425e5e/t/5a99bac69140b7e764af5d85/1520024268964/GenSpace_Logo+LARGE+copy.png?format=1000w" width="700px"> <img src="http://www.cpr.org/sites/default/files/images/microbiacrop.jpg" width="700"> <div class="main"> <p>Take a lunch break tomorrow with Genspace! Join us at the Bryant Park Reading Room for a <strong><a href="https://www.nycgovparks.org/events/2018/07/18/bryant-park-author-one-thing-leads-to-another mc_cid=bc42434e0d&mc_eid=0c723f84b1/">conversation with Eugenia Bone about her new book,<em>Microbia</em></a></strong>. Then come by the lab to get your hands on some microbes yourself in one of our upcoming workshops.</p> </div> <div class='grid-container'> <div class='grid-item'> <img src="https://i.imgur.com/d3O36V1.png" width="330px"> <p><b>RNA Evolution: From Primordial Life to Masterminds of Gene Expression</b></p> <p>In this course, students will discover the vast and intricate world of RNA biology. Learn how to extract RNA from mouse organs.</p> <p class="More">More Info >></p> </div> <div class='grid-item'> <img src="https://i.imgur.com/oJ9QxSM.png" width="330px"> <p><b>Neurohacking 101:Brain networks and<br>Machine Learning</b></p> <p>This introductory course covers some of the most important techniques used in the analysis of MRI data, and you’ll learn plenty about neuroscience along the way!</p> <p class="More">More Info >></p> </div> </div> <div class="block"> <p class="bottom">Copyright © 2017 Genspace, All rights reserved.</p> <p class="bottom">Our mailing address is: 140 32nd Street Brooklyn, NY 11232</p> <p class="bottom">Want to change how you receive these emails? You can update your preferences or unsubscribe from this list.</p> </div> </div> </body> </html>
.container{ font-family: Arial, Helvetica, sans-serif; max-width: 700px; margin: 0; } .main{ text-align: left; font-family: Arial, Helvetica, sans-serif; } .more{ color: #39b5e4; } .grid-container{ display: grid; grid-template-columns: 50% 50%; /*this will give you a 2 column grid*/ grid-column-gap: 50px; grid-row-gap: 40px; width: 90%; margin-bottom: 100px; } .grid-item{ width: 100%; } .block{ height: 200; width: 700px; background-color: #404040; } .bottom{ text-align: center; font-size: 10px; padding-top: 30; padding-bottom: 10px; color: white; }
// Write JavaScript here