diff --git a/css/style.css b/css/style.css index bd698c1..21b7b36 100644 --- a/css/style.css +++ b/css/style.css @@ -117,6 +117,17 @@ a:visited { color: #01b3af; } +.home .container #role +{ + color: #272341; +} + +.home .container .typed-cursor +{ + color: #272341 ; +} + + .home .container a.button { position: relative; display: flex; @@ -651,4 +662,4 @@ a:visited { .footer{ font-size: 12.5px; } -} +} \ No newline at end of file diff --git a/index.html b/index.html index bc4d3db..8c19a5c 100644 --- a/index.html +++ b/index.html @@ -4,16 +4,17 @@ Minifolio - + + +
- Hi, my name is Your Name
I'm the Unknown Developer -
+ Hi, my name is Your Name
I'm Know more
@@ -99,8 +100,11 @@ - - + + + diff --git a/js/typingAnimation.js b/js/typingAnimation.js new file mode 100644 index 0000000..808f337 --- /dev/null +++ b/js/typingAnimation.js @@ -0,0 +1,7 @@ +// Custom the typed strings array based on your roles +var typed = new Typed("#role", { + strings: ["the Unknown Developer", "a UI/UX Designer", "a Youtuber"], + typeSpeed: 210, + backSpeed: 40, + loop: true, +});