diff --git a/about.html b/about.html new file mode 100644 index 0000000..8201876 --- /dev/null +++ b/about.html @@ -0,0 +1,61 @@ + + + + + + + Amaan Abbasi | + + + + + + + + + + + + +
+ +
+
+ +
+
+ + +
+
+

+ About me +

+

+ I like making new things. And other description about yourself. +

+
+
+
+ + + \ No newline at end of file diff --git a/index.html b/index.html index a75e316..b050fd0 100644 --- a/index.html +++ b/index.html @@ -8,14 +8,10 @@ - + - + @@ -39,8 +35,8 @@ @@ -59,6 +55,7 @@

+ \ No newline at end of file diff --git a/main.css b/main.css index f0d351b..afbab7a 100644 --- a/main.css +++ b/main.css @@ -1,15 +1,15 @@ .navbar-brand.is-flex { - width:100%; - margin-top:0.01em; + width: 100%; + margin-top: 0.01em; } -.navbar-start{ - display:flex; +.navbar-start { + display: flex; } -.navbar-end{ - display:flex; - margin-left:auto; +.navbar-end { + display: flex; + margin-left: auto; } .my-background-1 { diff --git a/script.js b/script.js index cac5891..353c037 100644 --- a/script.js +++ b/script.js @@ -1,9 +1,11 @@ -let animateName = "animated pulse" -let animationend = "webkitAnimationEnd mozAnimationEnd oAnimationEnd animationEnd" -let animatedClass = ".title" -$(animatedClass).mouseenter(function(event){ +let animateName = 'animated pulse'; +let animationend = 'webkitAnimationEnd mozAnimationEnd oAnimationEnd animationEnd'; +let animatedClass = '.title'; + +$(animatedClass).mouseenter(function () { $(this).addClass(animateName); }); -$(animatedClass).on(animationend, function(event) { + +$(animatedClass).on(animationend, function () { $(this).removeClass(animateName); }); \ No newline at end of file