GNLT/script.js

12 lines
264 B
JavaScript
Raw Normal View History

2022-09-23 14:58:23 +01:00
class link{
constructor(url){
this.url= url;
}
show(){
var win=window.open(this.url, '_blank');
win.focus();
}
}var firstlink = new link('https://git.xaloc.space')
var secondlink = new link('https://fsf.org')
var thirdlink = new link('https://fedi.cat')