From 0b17315d537cbcb66a945c2c30d882108ebf619d Mon Sep 17 00:00:00 2001 From: Harshit Sachdev Date: Mon, 15 Dec 2025 15:27:37 +0530 Subject: [PATCH] =?UTF-8?q?Week=201=20Day=201=20=E2=80=93=20Orientation=20?= =?UTF-8?q?and=20Web=20Development=20Overview?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Week-1/Day-1/Readme.md | 21 +++++++++++++++++++++ Week-1/Day-1/web-development-overview.md | 12 ++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 Week-1/Day-1/Readme.md create mode 100644 Week-1/Day-1/web-development-overview.md diff --git a/Week-1/Day-1/Readme.md b/Week-1/Day-1/Readme.md new file mode 100644 index 0000000..b4d32ab --- /dev/null +++ b/Week-1/Day-1/Readme.md @@ -0,0 +1,21 @@ +# Day 1 – Orientation & Web Development Overview + +## Date +15 December 2025 + +## Objective +To get an overview of web development. + +## Topics Covered +- Overview of web development +- Frontend vs Backend +- Tools used in web development + +## Files Included +- `web-development-overview.md` – Notes on web development basics + +## Learning Outcome +Understood how websites work and the role of frontend and backend technologies. + +## Status +Completed diff --git a/Week-1/Day-1/web-development-overview.md b/Week-1/Day-1/web-development-overview.md new file mode 100644 index 0000000..a32837e --- /dev/null +++ b/Week-1/Day-1/web-development-overview.md @@ -0,0 +1,12 @@ +## Web Development Overview + +## Introduction +Web development is the process of creating and maintaining websites and web applications, involving tasks from designing user interfaces (front-end) to managing servers and databases (back-end), using core technologies like HTML (structure), CSS (style), and JavaScript (interactivity) to bring them to life online + +## Types of Web Development +- Frontend Development: User interface and user experience (HTML, CSS, JavaScript) +- Backend Development: Server-side logic and databases (Node.js, MongoDB) +- Full Stack Development: Combination of frontend and backend + +## Summary +Learned the basics of how websites are built and how frontend and backend work together.