Souvik Chakraborty

Souvik Chakraborty

13 Articles Published

Articles by Souvik Chakraborty

Page 2 of 2

Create survey form in HTML and CSS

Souvik Chakraborty
Souvik Chakraborty
Updated on 15-Mar-2026 776 Views

Creating a survey form in HTML and CSS allows you to build interactive forms for collecting user feedback and data. This tutorial demonstrates how to create a professional, responsive survey form with modern styling and interactive elements. Syntax /* Basic form styling */ form { display: flex; flex-direction: column; } .form-group { margin-bottom: 1rem; } input, select, textarea { padding: 0.5rem; border: 1px solid #ccc; border-radius: 4px; } Complete ...

Read More

9 Dot Menu using HTML and CSS

Souvik Chakraborty
Souvik Chakraborty
Updated on 15-Mar-2026 622 Views

The 9 dots menu is a grid of nine clickable icons arranged in a 3x3 layout. When clicked, the menu expands to reveal individual icons that provide quick access to different functions. In this tutorial, we will learn how to create a 9 Dot Menu using HTML, CSS, and a little bit of JavaScript. Syntax .navigation { position: relative; width: 70px; height: 70px; transition: width 0.5s, height 0.5s; } .navigation.active { width: 200px; ...

Read More

Build a Technical Documentation Website Using HTML and CSS

Souvik Chakraborty
Souvik Chakraborty
Updated on 15-Mar-2026 465 Views

Learn how to design a technical documentation website using HTML and CSS. This layout is optimized for programming documentation with user-friendly navigation and clean content organization. HTML provides the semantic structure while CSS handles styling and responsive design, creating a professional documentation experience similar to popular programming references. Navigation What is C++ Objects & Classes Inheritance Polymorphism Main Documentation Content Documentation sections with detailed explanations Code examples with syntax highlighting Structured content with proper typography #include using namespace std; int main() { cout

Read More
Showing 11–13 of 13 articles
« Prev 1 2 Next »
Advertisements