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> <link href="https://fonts.googleapis.com/css?family=Chivo:300,300i,400,400i,700,900" rel="stylesheet"> <head> <title>HTML, CSS and JavaScript demo</title> </head> <body> <div class="paper"> <!-- Start your code here --> <div class="header"> <h1>I F A H <br> P A N T I T A N O N T A </h1> <h5><i>Interactive Designer Based in New York City</i></h5> </div> <div class="contact"> <h5>929-422-8501<br>ipantitanonta@gmail.com<br>ifah.work</h5> </div> <div class="info-container"> <div></div> <div class="info"> <h3>EDUCATION</h3> <div class="container"> <div class="date"> 2015 -<br>present</div> <div class="box"> <b>SCHOOL OF VISUAL ARTS — New York, NY</b> <br>BFA Graphic Design — Class of 2019 <br><div class="subinfo"><i>Dean’s List — Fall’15 and Spring’16</i></div> </div> </div> <div> <h3>EXPERIENCES</h3> <div class="container"> <div class="date"> 8/2018 -<br>present</div> <div class="box"> <b>WEB INTERN</b> <br><i>VISUAL ARTS PRESS </i>— New York, NY <br><div class="subinfo">Design and create wireframes for the instution related websites and others digital platform.</div> </div> <div class="date"> 6/ 2018 -<br> 8/ 2018</div> <div class="box"> <b>GRAPHIC DESIGN INTERN </b> <br><i>NOMSTER CHEF </i>— New York, NY <br><div class="subinfo">Design merchandise and graphic illustration materials. Design graphic contents for kids’ cooking recipes.</div> </div><div class="date"> 6/ 2018 -<br> 7/ 2018</div> <div class="box"> <b>RESEARCH TRAINING</b> <br><i>EDEN CAPITAL </i>— New York, NY <br><div class="subinfo">Training on information research and analysis report.</div> </div> </div> <div > <h3>SKILLS</h3> <div class="container"> <div class="date"> professional</div> <div class="box"> <div >Adobe CC Suites, Bookbinding <br>Sketch, Framer, InVision <br>HTML/CSS, familiarity with JS</div> </div> <div class="date">languages</div> <div class="box"> <div class="subinfo">Thai (Native) <br>Fluent in English</div> </div> </div> </div> </div> </div> </div> <!-- End your code here --> </div> </body> </html>
.paper { border: 2px solid black; width: 850; height: 1100; padding: 20px; } .header { font-family: 'Chivo', sans-serif; font-weight: 900; /* border: 1px solid red; */ } .header, h5{ font-family: 'Chivo', sans-serif; font-weight: 300; } .contact{ /* border: 1px solid red; */ margin-top: 40px; } .info-container{ display: grid; grid-template-columns: 40% 60%; padding: 30px 0px 0 0; /* border: 1px solid red; */ font-family: 'Chivo', sans-serif; } .container{ display: grid; grid-template-columns: 20% 80%; font-weight:400 ; } .box, .date{ margin-bottom: 10px; } .subinfo, .date{ font-weight: lighter; }
// Write JavaScript here