DevPlatform
Home
Components
Search
Submit
Earn
Login
Sign Up Free
Book Demo Btn - Preview | DevPlatform
DevPlatform
Categories
Accordion
Animation
Box Shadow
Button
Card
Footer
Form
Gallery
Hero Section
Inputs
Loader
Marquee
Modal
Modules
Navbar
Progress Bar
Radio Buttons
Search-Bar
Sections
Slider
Tab
Timeline
Toggle
Book Demo Btn
rohit
Feb 13, 2026
10
0
Share
Live Preview
Refresh
Live Editor
HTML
CSS
JS
HTML
CSS
JavaScript
1
<button class="demo-btn"> <span class="icon-box"> <span class="arrow">➜</span> </span> <span class="text">Book a demo</span> </button>
1
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background: #f2f2f2; font-family: "Poppins", sans-serif; } .demo-btn { display: inline-flex; align-items: center; border: none; padding: 6px; border-radius: 14px; background: #1f2430; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.15); transition: all 0.3s ease; } .icon-box { width: 60px; height: 48px; border-radius: 10px; background: #d4ff2f; /* neon green */ display: flex; align-items: center; justify-content: center; margin-right: 14px; transition: all 0.3s ease; } .arrow { font-size: 20px; color: #1f2430; font-weight: bold; } .text { color: #ffffff; font-size: 18px; font-weight: 500; padding-right: 18px; } /* Hover Effects */ .demo-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.25); } .demo-btn:hover .icon-box { background: #c2f000; } .demo-btn:active { transform: scale(0.97); }
1
Comments
0
Want to comment?
Please
login
or
sign up
to post comments.
No comments yet
Be the first to comment on this component!
Comments 0
Want to comment?
Please login or sign up to post comments.
No comments yet
Be the first to comment on this component!