Skip to content

Commit 0e54c4d

Browse files
Merge branch 'TusharKesarwani:main' into main
2 parents 05b8475 + 9401bad commit 0e54c4d

199 files changed

Lines changed: 7933 additions & 1071 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Bug report
33
about: Create a report to help us improve
44
title: ''
5-
labels: 'SSOC 2.0'
5+
labels: ''
66
assignees: ''
77

88
---

.github/ISSUE_TEMPLATE/new-project-request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: New Project Request
33
about: Add any website template you have for this repository
44
title: ''
5-
labels: 'SSOC 2.0'
5+
labels: ''
66
assignees: ''
77

88
---

.github/workflows/codeql.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ on:
1717
pull_request:
1818
# The branches below must be a subset of the branches above
1919
branches: [ "main" ]
20-
schedule:
21-
- cron: '43 3 * * 6'
20+
2221

2322
jobs:
2423
analyze:
@@ -74,4 +73,4 @@ jobs:
7473
- name: Perform CodeQL Analysis
7574
uses: github/codeql-action/analyze@v2
7675
with:
77-
category: "/language:${{matrix.language}}"
76+
category: "/language:${{matrix.language}}"

.github/workflows/lock-issues.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: 'Lock new issues'
2+
3+
on:
4+
issues:
5+
types: opened
6+
7+
permissions:
8+
issues: write
9+
10+
jobs:
11+
action:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: dessant/repo-lockdown@v3
15+
with:
16+
close-issue: false
17+
exclude-issue-labels: 'status: ready for dev'
18+
process-only: 'issues'
19+
skip-closed-issue-comment: true
20+
issue-comment: >
21+
To reduce notifications, issues are locked. Your issue will be unlock when we will add label as `status: ready for dev`. Check out the [contributing guide](https://github.com/TusharKesarwani/Front-End-Projects/blob/main/CONTRIBUTING.md) for more information.

CONTRIBUTING.md

Lines changed: 60 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,34 +6,79 @@
66
<h1 align="center">Creating first Pull Request 🌟</h1>
77

88
---
9-
1. Fork this repository.
10-
2. Clone the forked repository.
11-
```css
9+
1. Create a folder at you desired location (usually at your desktop).
10+
11+
2. Open Git Bash Here.
12+
13+
3. Create a Git Repository.
14+
Run the command ```git init```
15+
16+
4. Fork the [repository](https://github.com/TusharKesarwani/Front-End-Projects.git).
17+
18+
5. Clone your forked repository of project.
19+
```
1220
git clone https://github.com/<your-github-username>/Front-End-Projects.git
1321
```
1422

15-
3. Navigate to the project directory.
16-
```py
23+
6. Navigate to the project directory.
24+
```
1725
cd Front-End-Projects
1826
```
19-
4. Create a new branch.
20-
```css
27+
28+
7. Add a reference(remote) to the original repository.
29+
```
30+
git remote add upstream https://github.com/TusharKesarwani/Front-End-Projects.git
31+
```
32+
33+
8. Check the remotes for this repository.
34+
```
35+
git remote -v
36+
```
37+
38+
9. Always take a pull from the upstream repository to your main branch to keep it updated as per the main repository.
39+
```
40+
git pull upstream main
41+
```
42+
43+
8. Create a new branch.
44+
```
2145
git checkout -b <your_branch_name>
2246
```
23-
5. Make changes.
24-
6. Stage your changes and commit
25-
```css
26-
git add .
47+
48+
9. Perform your desired changes to the code base.
49+
50+
10. Check your changes
51+
```
52+
git staus
53+
```
54+
```
55+
git diff
56+
```
57+
58+
11. Stage your changes
59+
```
60+
git add . <\files_that_you made_changes>
61+
```
62+
63+
12. Commit your changes.
64+
```
2765
git commit -m "<your_commit_message>"
2866
```
29-
7. Push your local commits to the remote repo.
30-
```css
67+
68+
13. Push the committed changes in your feature branch to your remote repository.
69+
```
3170
git push -u origin <your_branch_name>
3271
```
33-
8. Create a Pull Request.
34-
9. Congratulations! 🎉 you've made your contribution.
3572

73+
14. To create a Pull Request, click on ```compare and pull requests```.
74+
75+
15. Add an appropriate title and description to your PR explaining your changes.
76+
77+
18. Click on ```create pull request```.
78+
79+
Congratulations🎉, you have made a PR to the Front-End Projects. Wait for your submission to be accepted and your PR to be merged by a maintainer.
3680

81+
If you have any doubts please let us know in comments.
3782

3883
<h1 align="center">Communication and Support 💬</h1>
3984
<p align="center">Join the project's communication channels to interact with other contributors and seek assistance.</br>If you have any questions or need help, don't hesitate to ask in the project's communication channels or comment on the relevant issue.</p>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# MovieRRific
2+
This is a movie website which displays all the popular hollywood movies
3+
It is a responsive website too
4+
5+
# Technologies used
6+
This project is built using:-
7+
- HTML5 (Structuring)
8+
- CSS3 (Styling)
9+
- Javascript
10+
- Git/GitHub (Version control)

Projects/Age Calculator/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
padding: 10px;
1313
}
1414
.calculator{
15+
text-align: center;
16+
position: relative;
17+
left: 18%;
18+
top: 2rem;
1519
width: 100%;
1620
max-width: 600px;
1721
margin-left: 10%;

Projects/Air-Quality/style.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ button:hover {
192192

193193
/* CSS for screens less than 480px */
194194
@media (max-width: 480px) {
195+
195196
.header {
196197
font-size: 18px;
197198
}
@@ -203,4 +204,8 @@ button:hover {
203204
.sub-heading{
204205
font-size: 20x;
205206
}
207+
.modal-container{
208+
margin-top: 80px;
209+
}
206210
}
211+

Projects/Alarm Setter/Readme.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Alarm setter Website
2+
This website is used to remind ourselves of important tasks by setting an alarm.It can be used in day-to-day life.
3+
4+
## Technologies Used
5+
- HTML5 (structuring)
6+
- CSS (styling)
7+
- JavaScript (client side scripting)
8+
- Git/GitHub (version control)
9+
- Netlify (hosting)
10+
11+
## Sample Output
12+
![Screenshot](image.png)

Projects/Alarm Setter/files/clock.svg

Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)