├── README.md ├── Yoelvis Mulen - CV.pdf ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── css ├── contact.css ├── experiences.css ├── main.css ├── navbar.css ├── profile.css └── skills.css ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── img ├── close-icon.svg ├── hamburger-icon.svg ├── professional-profile.png ├── social │ ├── github.svg │ ├── linkedin.svg │ ├── twitter.svg │ └── youtube.svg ├── wave.svg └── youtube-picture.png ├── index.html ├── js └── app.js └── site.webmanifest /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/README.md -------------------------------------------------------------------------------- /Yoelvis Mulen - CV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/Yoelvis Mulen - CV.pdf -------------------------------------------------------------------------------- /android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/android-chrome-192x192.png -------------------------------------------------------------------------------- /android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/android-chrome-512x512.png -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/apple-touch-icon.png -------------------------------------------------------------------------------- /css/contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/css/contact.css -------------------------------------------------------------------------------- /css/experiences.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/css/experiences.css -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/css/main.css -------------------------------------------------------------------------------- /css/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/css/navbar.css -------------------------------------------------------------------------------- /css/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/css/profile.css -------------------------------------------------------------------------------- /css/skills.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/css/skills.css -------------------------------------------------------------------------------- /favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/favicon-16x16.png -------------------------------------------------------------------------------- /favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/favicon-32x32.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/close-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/img/close-icon.svg -------------------------------------------------------------------------------- /img/hamburger-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/img/hamburger-icon.svg -------------------------------------------------------------------------------- /img/professional-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/img/professional-profile.png -------------------------------------------------------------------------------- /img/social/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/img/social/github.svg -------------------------------------------------------------------------------- /img/social/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/img/social/linkedin.svg -------------------------------------------------------------------------------- /img/social/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/img/social/twitter.svg -------------------------------------------------------------------------------- /img/social/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/img/social/youtube.svg -------------------------------------------------------------------------------- /img/wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/img/wave.svg -------------------------------------------------------------------------------- /img/youtube-picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/img/youtube-picture.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/index.html -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/js/app.js -------------------------------------------------------------------------------- /site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymulenll/curriculum-web/HEAD/site.webmanifest --------------------------------------------------------------------------------