├── .gitattributes ├── .gitignore ├── README.md ├── desktop.ini ├── img ├── icon.jpg └── saya1.png ├── index.html ├── script.js └── style.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bert093/Portofolio-Website/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .qodo 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bert093/Portofolio-Website/HEAD/README.md -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- 1 | [.ShellClassInfo] 2 | IconResource=C:\Windows\System32\SHELL32.dll,208 3 | [ViewState] 4 | Mode= 5 | Vid= 6 | FolderType=Generic -------------------------------------------------------------------------------- /img/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bert093/Portofolio-Website/HEAD/img/icon.jpg -------------------------------------------------------------------------------- /img/saya1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bert093/Portofolio-Website/HEAD/img/saya1.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bert093/Portofolio-Website/HEAD/index.html -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bert093/Portofolio-Website/HEAD/script.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bert093/Portofolio-Website/HEAD/style.css --------------------------------------------------------------------------------