D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
zikes
Full window
Github gist
Gocagne Logotype
Built with
blockbuilder.org
forked from
anonymous
's block:
Gocagne Logotype
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Gocagne</title> <link href="https://fonts.googleapis.com/css?family=Raleway:500" rel="stylesheet"> <style type="text/css"> html,body { height: 100%; } body { margin: 0; text-align: center; font-family: 'Raleway', sans-serif; display: flex; align-items: center; justify-content: center; background-color: #fdf6e3; } h1 { display: flex; font-size: 5em; color: #cb4b16; } span { color: #93a1a1; } </style> </head> <body> <h1>Go<span>cagne</span></h1> </body> </html>