Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles by Souvik Chakraborty
Page 2 of 2
Create survey form in HTML and CSS
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 More9 Dot Menu using HTML and CSS
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 MoreBuild a Technical Documentation Website Using HTML and CSS
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