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"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="author" content="edible-zebra"> <title>Personal Development Webspace</title> </head> <body> <h1 class="blog-name">Personal Development Blog</h1> <div class="container"> <nav> <ul> <li><a href="PDW-journal.html">Journal</a></li> <li><a href="PDW-recipes.html">Recipes</a></li> <li><a href="#">Posts</a></li> </ul> </nav> </div> </body> </html>
html { align-items: center; background-color: skyblue; display: flex; justify-content: center; } body { height: 100vh; text-align: center; width: 100%; } .container { margin-left: auto; margin-right: auto; width: 80%; } /* START RIBBON */ nav { background: azure; border-left: 1px solid rgba(0, 0, 0, 0.4); border-right: 1px solid rgba(0, 0, 0, 0.4); box-shadow: 0 3px 1px -1px rgba(0, 0, 0, 0.4); margin: 40px auto 0; padding: 0 50px; position: relative; } nav::before, nav::after { border: 1.25em solid azure; bottom: -0.7em; box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.4); content: ""; display: block; position: absolute; width: 0.6em; z-index: -2; } nav::before { border-left-color: transparent; border-right-width: 1.05em; left: -2.35em; } nav::after { border-left-width: 1.05em; border-right-color: transparent; right: -2.35em; } /* END RIBBON */ nav ul { display: flex; justify-content: space-between; list-style: none; padding: 0; } nav ul > li { float: left; width: 120px; } nav ul > li a { background: azure; color: midnightblue; display: block; font-size: 20px; font-weight: bold; height: 2em; line-height: 2em; text-align: center; text-decoration: none; text-transform: uppercase; } nav ul > li a:hover { text-decoration: underline; }
// Write JavaScript here