├── Scan Text Loader
├── index.html
└── style.css
├── Incoming Call Animation
├── Readme.md
├── index.html
└── style.css
├── Tubelight Effect
├── Readme.md
├── index.html
└── style.css
├── Neumorphic Button
├── index.html
└── style.css
├── Gradient Color Generator
├── Readme.md
├── style.css
├── script.js
└── index.html
├── Simple Loader
├── index.html
└── style.css
├── Zoom In-Out Text Effect
├── index.html
└── style.css
├── README.md
├── Link Hover Animation
├── index.html
└── style.css
├── Div follows mouse Animation
├── index.html
├── style.css
└── script.js
├── Circular Progress Bar
├── index.html
└── style.css
├── Icon Pulse Animation
├── index.html
└── style.css
├── Input Animation
├── index.html
└── style.css
├── Add to Cart Animation
├── index.html
├── script.js
└── style.css
├── Dropdown menu
├── Readme.md
├── index.html
└── style.css
├── Password Generator
├── index.html
├── script.js
└── style.css
├── Dark light Mode | The easy way
└── index.html
├── Light Dark Mode Toggle switch
├── index.html
└── style.css
├── Wavy label input
├── index.html
└── style.css
├── Custom Radio Buttons
├── index.html
└── style.css
├── Social Icons with Glowing Effect
├── index.html
└── style.css
├── Gradient Border Animation
└── index.html
├── CSS Counter
└── index.html
├── Pulse Loader
└── index.html
├── Bouncing Ball
└── index.html
├── Image Hover Overlay
└── index.html
├── Pulsing Heart Effect
└── index.html
├── Animated Checkbox
└── index.html
├── Instagram Logo
└── index.html
└── Diya (Lamp)
└── index.html
/Scan Text Loader/index.html:
--------------------------------------------------------------------------------
1 |
2 | Loading
3 |
4 |
--------------------------------------------------------------------------------
/Incoming Call Animation/Readme.md:
--------------------------------------------------------------------------------
1 | A simple incoming call animation made using HTML and CSS.
2 | Give it a Star if you like it...
3 | Thanks 👍
4 |
--------------------------------------------------------------------------------
/Tubelight Effect/Readme.md:
--------------------------------------------------------------------------------
1 | ### Hello,
2 | Wanna see codepen version of Tube light Effect. [Click Here](https://codepen.io/coding_dev_/pen/zYWxwNB)
3 |
4 | Thank You for Reading!
5 |
--------------------------------------------------------------------------------
/Neumorphic Button/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | Neumorphic Button
12 |
13 |
14 |
15 |
16 |
17 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/Gradient Color Generator/Readme.md:
--------------------------------------------------------------------------------
1 | A Gradient Color Generator made using HTML, CSS and Javascript.
2 |
3 | Preview :
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Simple Loader/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Simple Loader
5 |
6 |
7 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Tubelight Effect/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | Tube Light Effect
9 |
10 |
11 |
12 |
13 | Hello World
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/Zoom In-Out Text Effect/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | hey
6 | hey
7 | hey
8 | hey
9 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Hello Everyone
2 | This repo contains mini projects build using HTML, CSS and JavaScript.
3 |
4 | All the mini things shown on my [instagram](https://www.instagram.com/coding_dev_/)
5 |
6 | Learn Web Development by making this Mini Projects!
7 |
8 | It contains:
9 | 1. Password Generator
10 | 2. Image Hover Overlay
11 | 3. Instagram Logo
12 | 4. Animations
13 | 5. Etc
14 |
15 | And many more coming soon...
16 |
--------------------------------------------------------------------------------
/Link Hover Animation/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | Link Hover Animation
9 |
10 |
11 | Hover this Link
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Div follows mouse Animation/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Div Follows Mouse Cursor
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Circular Progress Bar/index.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
10 |
14 |
15 |
--------------------------------------------------------------------------------
/Icon Pulse Animation/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Pulse Animation
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/Input Animation/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Input Animation
8 |
9 |
10 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/Div follows mouse Animation/style.css:
--------------------------------------------------------------------------------
1 | body {
2 | padding: 0;
3 | margin: 0;
4 | height: 100vh;
5 | background: rgb(212, 249, 255);
6 | overflow: hidden;
7 | }
8 | #mouse {
9 | width: 3em;
10 | height: 3em;
11 | background: rgb(4, 174, 204);
12 | position: absolute;
13 | border: 5px solid #fff;
14 | transform: translate(-50%, -50%);
15 | border-radius: 50%;
16 | box-shadow: rgba(100, 100, 111, 0.473) 0 7px 29px 0;
17 | transition: 0.1s ease-out;
18 | }
19 |
--------------------------------------------------------------------------------
/Add to Cart Animation/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
5 |
10 | +
11 |
12 |
--------------------------------------------------------------------------------
/Dropdown menu/Readme.md:
--------------------------------------------------------------------------------
1 |
2 | See the Pen
3 | Dropdown menu by Tilak (@coding_dev_)
4 | on CodePen.
5 |
6 |
--------------------------------------------------------------------------------
/Neumorphic Button/style.css:
--------------------------------------------------------------------------------
1 | body{
2 | display: grid;
3 | background: #e8e8e8;
4 | place-items: center;
5 | height: 100vh;
6 | }
7 | button {
8 | color: #090909;
9 | padding: 0.7em 1.7em;
10 | font-size: 18px;
11 | border-radius: 0.5em;
12 | background: #e8e8e8;
13 | border: 1px solid #e8e8e8;
14 | transition: all .3s;
15 | box-shadow: 6px 6px 12px #c5c5c5,
16 | -6px -6px 12px #ffffff;
17 | }
18 |
19 | button:hover {
20 | box-shadow: -6px -6px 12px #c5c5c5,
21 | 6px 6px 12px #fff;
22 | }
23 |
--------------------------------------------------------------------------------
/Password Generator/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
Password Generator
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Dark light Mode | The easy way/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
15 |
16 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/Light Dark Mode Toggle switch/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Light Dark Mode Toggle Switch
7 |
8 |
9 |
16 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/Gradient Color Generator/style.css:
--------------------------------------------------------------------------------
1 | @import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&display=swap');
2 |
3 | body{font-family: 'Comfortaa', cursive;}
4 |
5 | .container{
6 | width: 95%;
7 | margin: auto;
8 | display: flex;
9 | justify-content: center;
10 | align-items: center;
11 | height: 100vh;
12 | }
13 |
14 | #hex-colors{
15 | width: 100%;
16 | text-align: center;
17 | }
18 |
19 | #hex-colors h1, h2{
20 | font-size: 2rem;
21 | text-transform: uppercase;
22 | }
23 |
24 | #hex-colors h2{
25 | margin-top: 15%;
26 | text-transform: lowercase;
27 | }
28 |
--------------------------------------------------------------------------------
/Dropdown menu/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
22 |
23 |