Hi! I am RUPESH BANGAR. i am live from goregaon west, an pursuing Masters Of Computer Application at Pillai HOC College Of Engineering and Technology. I have strong interest in WEB DEVELOPMENT and enjoy working on both frontend and backend technologies
-
-
My Goals...
-
-
-
Understand HTML structure
-
Master text formatting tags
-
Learn how to link pages
-
Prepare for CSS styling
-
-
-
Daily Routine...
-
-
-
To wake up in the morning, take a bath, have breakfast and catch the train
-
Reach the office and setup my desk
-
Check internship portal for tasks, Read MDN Web Docs, Write and test code
Bio: This is a long biography to demonstrate the overflow property. CSS allows us to handle content that is larger than its container. By setting the height and the overflow property, we can ensure the layout stays intact while the user can still read all the text by scrolling inside this specific box.
This layout uses CSS Grid to stay organized on desktop.
-
-
-
-
Article 2
-
On mobile, these cards will stack one on top of the other.
-
-
-
-
Article 3
-
Responsive design makes the web accessible to everyone.
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week-02/Day_03/style.css b/Week-02/Day_03/style.css
deleted file mode 100644
index e8ad1be..0000000
--- a/Week-02/Day_03/style.css
+++ /dev/null
@@ -1,53 +0,0 @@
-body {
- font-family: sans-serif;
- line-height: 1.5;
- margin: 0;
- padding: 20px;
-}
-
-img {
- max-width: 100%;
- height: auto;
- display: block;
-}
-
-nav ul {
- display: flex;
- list-style: none;
- padding: 0;
- gap: 20px;
- background: #1a08e9;
- padding: 10px;
-}
-nav a {
- color: white;
- text-decoration: none;
-}
-
-.grid {
- display: grid;
- grid-template-columns: 1fr 1fr 1fr;
- gap: 20px;
-}
-
-.card {
- border: 2px solid #271e1e;
- padding: 10px;
-}
-
-@media (max-width: 700px) {
-
- .grid {
- grid-template-columns: 1fr;
- }
-
- nav ul {
- flex-direction: column;
- text-align: center;
- }
-
- h1 {
- text-align: center;
- font-size: 1.5rem;
- }
-}
\ No newline at end of file
diff --git a/Week-02/Day_04/README.md b/Week-02/Day_04/README.md
deleted file mode 100644
index b6d1e06..0000000
--- a/Week-02/Day_04/README.md
+++ /dev/null
@@ -1,19 +0,0 @@
-### I mastered the 5 Basic Steps of the GitHub workflow:
-
-1. **Repository:** I created a "home" for my project files.
-2. **Branching:** I made a "copy" of my project to work on safely (so I don't break the main version).
-3. **Committing:** I saved my progress with a clear note about what I changed.
-4. **Pull Request (PR):** I asked for my changes to be checked and added to the main project.
-5. **Merging:** I combined my new work into the final project.
-
-## Checklist of Tasks Completed
-- [1] Created a new repository called `hello-world`.
-- [2] Created a new branch called `readme-edits`.
-- [3] Edited the README file and saved (committed) the changes.
-- [4] Opened a Pull Request to share my work.
-- [5] Merged the Pull Request into the main branch.
-
-## Tools Used
-* **GitHub:** To host my project online.
-* **Git:** To track the history of my work.
-* **Markdown:** To write this simple and clean README file.
diff --git a/Week-02/Day_05/README.md b/Week-02/Day_05/README.md
deleted file mode 100644
index 4541390..0000000
--- a/Week-02/Day_05/README.md
+++ /dev/null
@@ -1,36 +0,0 @@
-### Key Concepts Learned
-
-1. **Repositories:** Creating a project container on GitHub to track history.
-2. **Branching:** Creating an isolated environment (`readme-edits`) to test new ideas without affecting the `main` code.
-3. **Commits:** Saving "checkpoints" in the project with descriptive messages.
-4. **Pull Requests (PR):** Proposing changes to the project and starting a discussion before merging.
-5. **Merging:** Successfully incorporating changes from a branch back into the master project.
-
-
-### To complete this task, I performed the following steps:
-
-- [x] **Initialized Repository:** Created the `hello-world` repository.
-- [x] **Created Branch:** Created a branch named `readme-edits` to follow the branching strategy.
-- [x] **Modified Content:** Updated the `README.md` with professional information.
-- [x] **Committed Changes:** Used the Conventional Commits format for the commit message.
-- [x] **Opened Pull Request:** Documented the changes and submitted them for review.
-- [x] **Merged PR:** Finalized the changes into the `main` branch.
-
-
-### During this task, I practiced the following CLI commands:
-
-```bash
-# Clone the repository locally
-git clone https://github.com/[username]/hello-world.git
-
-# Create a new branch
-git checkout -b readme-edits
-
-# Stage changes
-git add .
-
-# Commit changes
-git commit -m "docs: add intern profile and workflow log"
-
-# Push to GitHub
-git push origin readme-edits
\ No newline at end of file
diff --git a/Week-03/Day_01/index.html b/Week-03/Day_01/index.html
deleted file mode 100644
index b82714f..0000000
--- a/Week-03/Day_01/index.html
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
- Document
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Week-03/Day_01/script.js b/Week-03/Day_01/script.js
deleted file mode 100644
index f91bda1..0000000
--- a/Week-03/Day_01/script.js
+++ /dev/null
@@ -1,29 +0,0 @@
-const internProfile = {
- firstName: "Rupesh",
- role: "Web Development Intern",
- tasksCompleted: 6,
-
- updateTasks() {
- this.tasksCompleted++;
- return `Task Update:\n${this.firstName} has completed a new task!\nTotal Tasks: ${this.tasksCompleted}`;
- }
-};
-
-const getWelcomeMessage = (name, role) => {
- return `Welcome to the Dashboard!\nName: ${name}\nRole: ${role}`;
-};
-
-const checkGoal = (completed, goal = 10) => {
- const remaining = goal - completed;
- return `Progress Report:\nCompleted: ${completed}\nTarget: ${goal}\nRemaining: ${remaining} tasks to reach goal.`;
-};
-
-const welcome = getWelcomeMessage(internProfile.firstName, internProfile.role);
-
-alert(welcome);
-
-const updateStatus = internProfile.updateTasks();
-alert(updateStatus);
-
-const progress = checkGoal(internProfile.tasksCompleted);
-alert(progress);
\ No newline at end of file