INCREASE YOUR
36 |MUSCLE STRENGTH
37 |Nothing will work until you do it!
38 |├── CONTRIBUTING.md
├── Fitness Center
├── img
│ ├── bg.jpeg
│ └── logo.png
├── index.html
└── style.css
├── Github Profile Search
├── index.html
├── script.js
└── style.css
├── README.md
├── arrow.png
├── css
└── style.css
├── fitness.html
├── form.html
├── hacktober.html
├── images
├── 1.jpg
└── favicon.png
├── index.html
├── js
└── index.js
└── web.html
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | SujataDelu
2 |
3 | Kanishk Tiwari
4 |
5 | Rohan
6 |
7 | Vaani Pathariya
8 |
9 | Rahul Sankhla
10 |
11 | Shubham7668
12 |
13 | Sanjay sargam
14 |
15 | Deep Poharkar
16 |
17 | Abhishek Fadake
18 |
19 | Douglas Evaristo
20 |
21 | Vivek
--------------------------------------------------------------------------------
/Fitness Center/img/bg.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ayush-agarwal-190/hacktoberfest-2022/e1568391be018dccae4a60971dc5c98d92be0e98/Fitness Center/img/bg.jpeg
--------------------------------------------------------------------------------
/Fitness Center/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ayush-agarwal-190/hacktoberfest-2022/e1568391be018dccae4a60971dc5c98d92be0e98/Fitness Center/img/logo.png
--------------------------------------------------------------------------------
/Fitness Center/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
Nothing will work until you do it!
38 |${user.bio}
` : '' 27 | const cardHTML = ` 28 |
16 | Step 1: Fork this repository.
17 | Step 2: Go to your GitHub profile and you will find a repository with the same name as the project. Clone this repository either using the "Download zip" button under the code section or using git commands,
18 | you can use the command:
19 |
20 | git clone `link of the project (your fork)`
21 |
22 | to clone your forked repository into your local machine.
23 |
24 | now change your dirctory to the project using the command:
25 |
26 | cd NAME_OF_REPOSITORY
27 |
28 | Now check if your fork is set to remote origin. A remote is basically a URL that points to the project repository and the one you forked. The project repository is called the 'Upstream' remote and your fork is called the 'origin' remote. You can check the status of remotes using the command:
29 |
30 | git remote -v
31 |
32 | you should see the word origin next to your fork, if you don't see it, you can use the command to add it:
33 |
34 | git remote add origin URL_OF_FORK
35 |
36 | now add the project repository as 'Upstream' remote using the command:
37 |
38 | git remote add upstream URL_OF_PROJECT
39 |
40 | now again use the command:
41 |
42 | git remote -v
43 |
44 | to check the status of remotes.
45 |
46 |
47 | Now to update your repository with the main project, you need to use the command:
48 |
49 | git pull upstream master
50 |
51 | or
52 |
53 | git pull upstream main
54 |
55 | depending upon the branch of the main project.
56 |
57 | Now, you should create a new branch as working in the main branch could be risky incase of an error or bugs, to add a new branch you can use the command:
58 |
59 | git checkout -b BRANCH_NAME
60 |
61 | This also switches you to the new branch.
62 |
63 | And now you can make whatever changes you feel like to the code using various tools.
64 | After you are done making the required changes, you can stage those changes using the command:
65 |
66 | git add -A
67 |
68 | and commit them using:
69 |
70 | git commit -m "A good description to the changes you made to the code."
71 |
72 | To push these changes you can use the command:
73 |
74 | git push origin BRANCH_NAME
75 |
76 | Going back to GitHub you may see a highlighted area which says "Compare and Pull Request", click that.
77 | This will send a pull request.
78 |
79 | Guidelines For contributors-:
80 | Register anytime between September 26 and October 31
81 |
82 | Pull requests can be made in any GITHUB or GITLAB hosted project that’s participating in Hacktoberfest (look for the “hacktoberfest” topic)
83 |
84 | Project maintainers must accept your pull/merge requests for them to count toward your total
85 |
86 | Have 4 pull/merge requests accepted between October 1 and October 31 to complete Hacktoberfest
87 |
88 | The first 40,000 participants (maintainers and contributors) who complete Hacktoberfest can elect to receive one of two prizes: a tree planted in their name, or the Hacktoberfest 2022 t-shirt.
89 |
--------------------------------------------------------------------------------
/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ayush-agarwal-190/hacktoberfest-2022/e1568391be018dccae4a60971dc5c98d92be0e98/arrow.png
--------------------------------------------------------------------------------
/css/style.css:
--------------------------------------------------------------------------------
1 | /* CSS Reset */
2 | body {
3 | background-image: url("../images/1.jpg");
4 | font-family: "Baloo Bhai", cursive;
5 | color: white;
6 | margin: 0px;
7 | padding: 0px;
8 | }
9 |
10 | .left {
11 | display: inline-block;
12 | /* border: 2px solid red; */
13 | position: absolute;
14 | left: 60px;
15 | top: 20px;
16 | }
17 |
18 | .left img {
19 | width: 136px;
20 | filter: invert(100%);
21 | }
22 |
23 | .left div {
24 | line-height: 19px;
25 | font-size: 26px;
26 | text-align: center;
27 | }
28 |
29 | .mid {
30 | display: block;
31 | width: 36%;
32 | margin: 29px auto;
33 | /* border: 2px solid green; */
34 | }
35 |
36 | .right {
37 | position: absolute;
38 | right: 34px;
39 | top: 43px;
40 | display: inline-block;
41 | /* border: 2px solid yellow; */
42 | }
43 | .header {
44 | opacity: 0.7;
45 | }
46 |
47 | .navbar {
48 | display: inline-block;
49 | }
50 |
51 | .navbar li {
52 | display: inline-block;
53 | font-size: 25px;
54 | }
55 |
56 | .navbar li a {
57 | color: #d1cccb;
58 | text-decoration: none;
59 | padding: 34px 23px;
60 | }
61 |
62 | .navbar li a:hover,
63 | .navbar li a.active {
64 | text-decoration: underline;
65 | color: grey;
66 | }
67 |
68 | .btn {
69 | font-family: "Baloo Bhai", cursive;
70 | margin: 0px 9px;
71 | background-color: #d1cccb;
72 | color: rgb(30, 77, 92);
73 | padding: 4px 14px;
74 | border: 2px solid grey;
75 | border-radius: 10px;
76 | font-size: 20px;
77 | cursor: pointer;
78 | }
79 |
80 | .btn:hover {
81 | background-color: black;
82 | }
83 |
84 | .container {
85 | border: 2px solid white;
86 | margin: 106px 80px;
87 | padding: 75px;
88 | width: 33vw;
89 | border-radius: 28px;
90 | }
91 |
92 | .form-group input {
93 | font-family: "Baloo Bhai", cursive;
94 | text-align: center;
95 | display: block;
96 | padding: 1px;
97 | border: 2px solid black;
98 | margin: 11px auto;
99 | font-size: 25px;
100 | border-radius: 8px;
101 | }
102 |
103 | .container h1 {
104 | text-align: center;
105 | }
106 |
107 | .container button {
108 | display: flex;
109 | width: 74%;
110 | margin: 20px auto;
111 | }
112 |
113 | .footer-container li {
114 | list-style: none;
115 | margin: 0;
116 | padding: 0;
117 | }
118 |
119 | .footer-container .footer-email-id {
120 | color: blue;
121 | }
122 |
123 | .textdiv {
124 | text-align: center;
125 | width: 500px;
126 | margin: 0 auto;
127 | }
128 | .parentdiv {
129 | display: flex;
130 | margin-left: 30%;
131 | }
132 | .social-icons {
133 | display: block;
134 | padding: 30px;
135 | }
136 | .infodiv {
137 | padding: 27px;
138 | }
139 | .igdiv {
140 | display: flex;
141 | justify-content: space-between;
142 | padding: 2px;
143 | }
144 | .ig {
145 | font-weight: bolder;
146 | font-size: 17px;
147 | }
148 | .iganchor {
149 | text-decoration: none;
150 | }
151 | .igfb {
152 | display: flex;
153 | justify-content: space-between;
154 | padding: 2px;
155 | }
156 | .fb {
157 | font-weight: bolder;
158 | font-size: 18px;
159 | }
160 | .fbanchor {
161 | text-decoration: none;
162 | }
163 | .twitterdiv {
164 | display: flex;
165 | }
166 | .twitter {
167 | font-weight: bolder;
168 | font-size: 18px;
169 | }
170 | .twitteranchor {
171 | text-decoration: none;
172 | }
173 | .twitchdiv {
174 | display: flex;
175 | }
176 | .twitch {
177 | font-weight: bolder;
178 | font-size: 18px;
179 | }
180 | .twitchanchor {
181 | text-decoration: none;
182 | }
183 |
--------------------------------------------------------------------------------
/fitness.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |