diff --git a/css/style.css b/css/style.css index 37e355d..a24d105 100644 --- a/css/style.css +++ b/css/style.css @@ -95,6 +95,7 @@ div.social { .solus { background-image: url(../images/social/linux.png); } .blog { background-image: url(../images/social/blog.png); } .ftp { background-image: url(../images/social/ftp.png); } +.band { background-image: url(../images/social/band.png); } .email { background-image: url(../images/social/email.png); } .tooltip { diff --git a/images/social/band.png b/images/social/band.png new file mode 100644 index 0000000..fb97bae Binary files /dev/null and b/images/social/band.png differ diff --git a/index.html b/index.html index ecb7f70..9ce68d6 100644 --- a/index.html +++ b/index.html @@ -34,7 +34,8 @@
GitHub
Solus Linux
- +
FTP
+
Band
diff --git a/js/script.js b/js/script.js index f57f588..46a727f 100644 --- a/js/script.js +++ b/js/script.js @@ -46,6 +46,10 @@ $(document).ready(function(){ window.open("https://ftp.zhirov.kz"); }); + $(".band").on( "click", function() { + window.open("https://www.realrocks.ru/formaldehyde"); + }); + $(".email").on( "click", function() { window.open(""); });