├── image.jpg
├── index.html
├── script.js
└── style.css
/image.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HowtoWebDev/Responsive-Portfolio-Website-Starter-Code/f2b6b63bfcc0f4f2e5b6ebde164ae92959db8291/image.jpg
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Portfolio Website
7 |
8 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/script.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HowtoWebDev/Responsive-Portfolio-Website-Starter-Code/f2b6b63bfcc0f4f2e5b6ebde164ae92959db8291/script.js
--------------------------------------------------------------------------------
/style.css:
--------------------------------------------------------------------------------
1 | * {
2 | margin: 0;
3 | padding: 0;
4 | box-sizing: border-box;
5 | text-decoration: none;
6 | border: none;
7 | outline: none;
8 | scroll-behavior: smooth;
9 | font-family: "Poppins", sans-serif;
10 | }
11 | html {
12 | font-size: 60%;
13 | overflow-x: hidden;
14 | }
15 | :root {
16 | --bg-color: #080808;
17 | --second-bg-color: #001005;
18 | --text-color: white;
19 | --main-color: #00ff51;
20 | }
--------------------------------------------------------------------------------