├── .dist └── output.css ├── .gitignore ├── README.md ├── desktop.ini ├── dist ├── img │ ├── 20221207_155811-removebg-preview.png │ ├── clients │ │ ├── ASUS_Logo.svg.png │ │ ├── Google_2015_logo.svg.png │ │ ├── Samsung_Logo.svg.png │ │ ├── Spotify_logo_with_text.svg.png │ │ ├── VScode.svg.png │ │ └── WhatsApp_horizontal.svg.png │ └── portofolio │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ └── 4.jpg ├── js │ └── script.js └── output.css ├── index.html ├── package.json ├── src └── input.css └── tailwind.config.js /.dist/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/.dist/output.css -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/README.md -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- 1 | [.ShellClassInfo] 2 | IconResource=C:\WINDOWS\System32\SHELL32.dll,43 3 | [ViewState] 4 | Mode= 5 | Vid= 6 | FolderType=Generic 7 | -------------------------------------------------------------------------------- /dist/img/20221207_155811-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/dist/img/20221207_155811-removebg-preview.png -------------------------------------------------------------------------------- /dist/img/clients/ASUS_Logo.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/dist/img/clients/ASUS_Logo.svg.png -------------------------------------------------------------------------------- /dist/img/clients/Google_2015_logo.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/dist/img/clients/Google_2015_logo.svg.png -------------------------------------------------------------------------------- /dist/img/clients/Samsung_Logo.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/dist/img/clients/Samsung_Logo.svg.png -------------------------------------------------------------------------------- /dist/img/clients/Spotify_logo_with_text.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/dist/img/clients/Spotify_logo_with_text.svg.png -------------------------------------------------------------------------------- /dist/img/clients/VScode.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/dist/img/clients/VScode.svg.png -------------------------------------------------------------------------------- /dist/img/clients/WhatsApp_horizontal.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/dist/img/clients/WhatsApp_horizontal.svg.png -------------------------------------------------------------------------------- /dist/img/portofolio/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/dist/img/portofolio/1.jpg -------------------------------------------------------------------------------- /dist/img/portofolio/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/dist/img/portofolio/2.jpg -------------------------------------------------------------------------------- /dist/img/portofolio/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/dist/img/portofolio/3.jpg -------------------------------------------------------------------------------- /dist/img/portofolio/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/dist/img/portofolio/4.jpg -------------------------------------------------------------------------------- /dist/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/dist/js/script.js -------------------------------------------------------------------------------- /dist/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/dist/output.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/package.json -------------------------------------------------------------------------------- /src/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/src/input.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ananta-TI/my-first-web/HEAD/tailwind.config.js --------------------------------------------------------------------------------