└── Responsive Portfolio Website Starter ├── image.jpg ├── index.html ├── project1.png ├── project2.png ├── project3.png ├── project4.png ├── project5.png ├── project6.png ├── script.js └── style.css /Responsive Portfolio Website Starter/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowtoWebDev/Portfolio-Website-Starter-Code/5808a12004fed3163823d2477e9ba0817fb6564d/Responsive Portfolio Website Starter/image.jpg -------------------------------------------------------------------------------- /Responsive Portfolio Website Starter/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Portfolio Website 7 | 8 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Responsive Portfolio Website Starter/project1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowtoWebDev/Portfolio-Website-Starter-Code/5808a12004fed3163823d2477e9ba0817fb6564d/Responsive Portfolio Website Starter/project1.png -------------------------------------------------------------------------------- /Responsive Portfolio Website Starter/project2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowtoWebDev/Portfolio-Website-Starter-Code/5808a12004fed3163823d2477e9ba0817fb6564d/Responsive Portfolio Website Starter/project2.png -------------------------------------------------------------------------------- /Responsive Portfolio Website Starter/project3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowtoWebDev/Portfolio-Website-Starter-Code/5808a12004fed3163823d2477e9ba0817fb6564d/Responsive Portfolio Website Starter/project3.png -------------------------------------------------------------------------------- /Responsive Portfolio Website Starter/project4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowtoWebDev/Portfolio-Website-Starter-Code/5808a12004fed3163823d2477e9ba0817fb6564d/Responsive Portfolio Website Starter/project4.png -------------------------------------------------------------------------------- /Responsive Portfolio Website Starter/project5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowtoWebDev/Portfolio-Website-Starter-Code/5808a12004fed3163823d2477e9ba0817fb6564d/Responsive Portfolio Website Starter/project5.png -------------------------------------------------------------------------------- /Responsive Portfolio Website Starter/project6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowtoWebDev/Portfolio-Website-Starter-Code/5808a12004fed3163823d2477e9ba0817fb6564d/Responsive Portfolio Website Starter/project6.png -------------------------------------------------------------------------------- /Responsive Portfolio Website Starter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowtoWebDev/Portfolio-Website-Starter-Code/5808a12004fed3163823d2477e9ba0817fb6564d/Responsive Portfolio Website Starter/script.js -------------------------------------------------------------------------------- /Responsive Portfolio Website Starter/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | text-decoration: none; 6 | scroll-behavior: smooth; 7 | font-family: "Poppins"; 8 | } 9 | :root { 10 | --bg-color: #080808; 11 | --second-bg-color: #101010; 12 | --text-color: white; 13 | --main-color: #ea580c; 14 | } 15 | html { 16 | font-size: 60%; 17 | overflow-x: hidden; 18 | } --------------------------------------------------------------------------------