diff --git a/css/style.css b/css/style.css index a24d105..97a9acb 100644 --- a/css/style.css +++ b/css/style.css @@ -96,6 +96,7 @@ div.social { .blog { background-image: url(../images/social/blog.png); } .ftp { background-image: url(../images/social/ftp.png); } .band { background-image: url(../images/social/band.png); } +.soundcloud { background-image: url(../images/social/soundcloud.png); } .email { background-image: url(../images/social/email.png); } .tooltip { diff --git a/images/social/soundcloud.png b/images/social/soundcloud.png new file mode 100644 index 0000000..b2f610e Binary files /dev/null and b/images/social/soundcloud.png differ diff --git a/index.html b/index.html index 9ce68d6..4e90eff 100644 --- a/index.html +++ b/index.html @@ -36,6 +36,7 @@
FTP
Band
+
Soundcloud
diff --git a/js/script.js b/js/script.js index 46a727f..89ba658 100644 --- a/js/script.js +++ b/js/script.js @@ -50,6 +50,10 @@ $(document).ready(function(){ window.open("https://www.realrocks.ru/formaldehyde"); }); + $(".soundcloud").on( "click", function() { + window.open("https://soundcloud.com/alexanderzhirov"); + }); + $(".email").on( "click", function() { window.open(""); });