DevPlatform
Home
Components
Search
Submit
Earn
Login
Sign Up Free
Feedback Form - 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
Feedback Form
rohitwushu
Jan 27, 2026
2
0
Share
Live Preview
Refresh
Live Editor
HTML
CSS
JS
HTML
CSS
JavaScript
1
<div class="feedback-grid"> <!-- Card 1 --> <div class="feedback-card"> <div class="avatar blue">🧑💻</div> <div class="bubble blue">💬</div> <p class="feedback-text"> Wow, <span class="highlight hl-blue">I'm blown away</span> by how quickly and easily this AI tool improved our design workflow. </p> <div class="author"> <h4>Alex Donnelly</h4> <p>Co-founder & CEO, Jitter</p> </div> </div> </div>
1
* { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Inter', sans-serif; background: #000; padding: 80px 20px; color: #111; } .section-title { text-align: center; font-size: 40px; font-weight: 700; margin-bottom: 60px; } .feedback-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; max-width: 1100px; margin: auto; } /* Card */ .feedback-card { height: 300px; background: #f3f6f6; border-radius: 24px; padding: 40px 28px 28px; position: relative; transition: all .3s ease; } .feedback-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,.08); } /* Avatar */ .avatar { position: absolute; top: -28px; left: 50%; transform: translateX(-50%); width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-size: 26px; color: #fff; } .blue { background: #4f46ff; } .orange { background: #ff7a00; } .green { background: #1abc9c; } /* Quote bubble */ .bubble { margin: 24px auto 18px; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-size: 18px; } /* Text */ .feedback-text { text-align: center; font-size: 15px; line-height: 1.6; margin-bottom: 18px; } /* Highlight */ .highlight { padding: 4px 8px; border-radius: 8px; font-weight: 600; color: #fff; display: inline-block; } .hl-blue { background: #4f46ff; } .hl-orange { background: #ff7a00; } .hl-green { background: #1abc9c; } /* Author */ .author { text-align: center; margin-top: auto; } .author h4 { font-size: 15px; font-weight: 600; } .author p { font-size: 13px; color: #666; margin-top: 4px; }
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!