├── .DS_Store ├── img ├── portfolio.png ├── sandhika.jpg └── projects │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── twice.png │ ├── tech-docs.png │ ├── landing-page.png │ └── twice-survey.png ├── .cpanel.yml ├── style.css └── index.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandhikagalih/portfolio-fcc/HEAD/.DS_Store -------------------------------------------------------------------------------- /img/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandhikagalih/portfolio-fcc/HEAD/img/portfolio.png -------------------------------------------------------------------------------- /img/sandhika.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandhikagalih/portfolio-fcc/HEAD/img/sandhika.jpg -------------------------------------------------------------------------------- /img/projects/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandhikagalih/portfolio-fcc/HEAD/img/projects/1.jpg -------------------------------------------------------------------------------- /img/projects/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandhikagalih/portfolio-fcc/HEAD/img/projects/2.jpg -------------------------------------------------------------------------------- /img/projects/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandhikagalih/portfolio-fcc/HEAD/img/projects/3.jpg -------------------------------------------------------------------------------- /img/projects/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandhikagalih/portfolio-fcc/HEAD/img/projects/4.jpg -------------------------------------------------------------------------------- /img/projects/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandhikagalih/portfolio-fcc/HEAD/img/projects/5.jpg -------------------------------------------------------------------------------- /img/projects/twice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandhikagalih/portfolio-fcc/HEAD/img/projects/twice.png -------------------------------------------------------------------------------- /img/projects/tech-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandhikagalih/portfolio-fcc/HEAD/img/projects/tech-docs.png -------------------------------------------------------------------------------- /img/projects/landing-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandhikagalih/portfolio-fcc/HEAD/img/projects/landing-page.png -------------------------------------------------------------------------------- /img/projects/twice-survey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandhikagalih/portfolio-fcc/HEAD/img/projects/twice-survey.png -------------------------------------------------------------------------------- /.cpanel.yml: -------------------------------------------------------------------------------- 1 | --- 2 | deployment: 3 | tasks: 4 | - export DEPLOYPATH=/home/u3864172/public_html/ 5 | - /bin/cp index.html $DEPLOYPATH 6 | - /bin/cp style.css $DEPLOYPATH 7 | - /bin/cp -R img $DEPLOYPATH 8 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | .jumbotron { 2 | padding-top: 6rem; 3 | background-color: #e2edff; 4 | height: 100vh; 5 | position: relative; 6 | } 7 | 8 | .wave1 { 9 | position: absolute; 10 | bottom: 0; 11 | left: 0; 12 | } 13 | 14 | #projects { 15 | background-color: #e2edff; 16 | } 17 | 18 | section { 19 | padding-top: 5rem; 20 | } 21 | 22 | /* Media Query ketika dibuka di mobile */ 23 | @media (max-width: 576px) { 24 | .btn-github { 25 | width: 90%; 26 | } 27 | 28 | .navbar { 29 | background-color: black !important; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
55 | Lecturer | Content Creator
57 | Follow my GitHub 58 | 65 |Lorem ipsum, dolor sit amet consectetur adipisicing elit. Iure mollitia voluptatum corrupti sint delectus facilis pariatur recusandae! Eveniet, iure debitis?
79 |Lorem ipsum dolor sit amet consectetur, adipisicing elit. Est quibusdam animi odit unde sequi voluptatibus quo rem perferendis eos, numquam in porro cumque a hic!
82 |
107 | Some quick example text to build on the card title and make up the bulk of the card's content.
110 | Detail Project » 111 |
117 | Some quick example text to build on the card title and make up the bulk of the card's content.
120 | Detail Project » 121 |
127 | Some quick example text to build on the card title and make up the bulk of the card's content.
130 | Detail Project » 131 |
137 | Some quick example text to build on the card title and make up the bulk of the card's content.
140 | Detail Project » 141 |
147 | Some quick example text to build on the card title and make up the bulk of the card's content.
149 |