Vintage Text

HTML
<div class="container"> <div class="retro"> VINTAGE</div> </div>
CSS
html, body { background: #1abc9c; height: 100%; width: 100%; display: flex; justify-content: center; align-items: center; } .container { width: 500px; margin: 5% auto; } .retro { font-family: 'Oswald', sans-serif; font-size: 150px; text-shadow: 5px 5px 0px #f0e8db, 8px 8px 0px #6c5257; color: #944755; transform: rotate(-10deg); }
JAVASCRIPT
Expand for more options Login