Skip to content

Instantly share code, notes, and snippets.

View neluttu's full-sized avatar
🏠
Working from home

Neluttu neluttu

🏠
Working from home
View GitHub Profile
<!-- https://www.youtube.com/watch?v=awNYtIAu6pI -->
<form action="">
<div class="form-group">
<label for="name">Name</label>
<input required placeholder="Kevin" type="text" id="name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input required placeholder="email@address.com" type="email" id="email">
</div>
@neluttu
neluttu / blurred-text-reveal.html
Last active May 19, 2024 19:40
Blurred text reveal
<style>
.cool {
padding: 10px;
font-size: 42px;
}
.cool > span {
filter: blur(calc(1rem * var(--blur, .4)));
transition: filter var(--speed, 5s);
}