From e8a1edacb9a22839f8aa6e7fb98fa1ff4b748867 Mon Sep 17 00:00:00 2001 From: rupeshbangar Date: Mon, 23 Feb 2026 23:30:22 +0530 Subject: [PATCH] Advanced HTML & CSS --- Week-02/Day_01/index.html | 45 +++++++++++++++++++++++++++++++++++++++ Week-02/Day_01/style.css | 32 ++++++++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 Week-02/Day_01/index.html create mode 100644 Week-02/Day_01/style.css diff --git a/Week-02/Day_01/index.html b/Week-02/Day_01/index.html new file mode 100644 index 0000000..1382ec7 --- /dev/null +++ b/Week-02/Day_01/index.html @@ -0,0 +1,45 @@ + + + + + Advanced HTML & CSS - Simple Form + + + + +
+ +
+

User Form

+ + + + + + +
+ +
+

Entered Details

+

Name: ______

+

Email: ______

+

City: ______

+
+ +
+ + + + + diff --git a/Week-02/Day_01/style.css b/Week-02/Day_01/style.css new file mode 100644 index 0000000..2ae6bfb --- /dev/null +++ b/Week-02/Day_01/style.css @@ -0,0 +1,32 @@ +body { + font-family: Arial; + background: #f2f2f2; +} + +.wrapper { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 20px; + width: 500px; + margin: 50px auto; +} + +.form { + display: flex; + flex-direction: column; + gap: 10px; + background: white; + padding: 15px; +} + +.display { + display: flex; + flex-direction: column; + gap: 10px; + background: white; + padding: 15px; +} + +input, button { + padding: 8px; +}