diff --git a/css/style.css b/css/style.css index 8bcaee9..59cc99e 100644 --- a/css/style.css +++ b/css/style.css @@ -99,6 +99,7 @@ div.social { .soundcloud { background-image: url(../images/social/soundcloud.png); } .email { background-image: url(../images/social/email.png); } .matrix { background-image: url(../images/social/matrix.png); } +.gallery { background-image: url(../images/social/gallery.png); } .tooltip { position: relative; diff --git a/images/social/gallery.png b/images/social/gallery.png new file mode 100644 index 0000000..b696388 Binary files /dev/null and b/images/social/gallery.png differ diff --git a/index.html b/index.html index 98f6df3..d5cd6dd 100644 --- a/index.html +++ b/index.html @@ -39,6 +39,7 @@
Band
Soundcloud
+ diff --git a/js/script.js b/js/script.js index 2341f48..590e701 100644 --- a/js/script.js +++ b/js/script.js @@ -61,4 +61,8 @@ $(document).ready(function(){ $(".matrix").on( "click", function() { window.open("https://matrix.to/#/@alexanderzhirov:matrix.org"); }); + + $(".gallery").on( "click", function() { + window.open("https://piwigo.zhirov.kz"); + }); });