-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.js
59 lines (43 loc) · 1.16 KB
/
links.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
'use strict';
function pigGame(){
window.open('https://pig-game-fawn.vercel.app/' , '_blank');
}
function GMyNum(){
window.open('https://guess-my-number-rouge.vercel.app/' , '_blank')
}
function github(){
window.open('https://github.com/vikram2009' , '_blank')
}
function gitlab(){
window.open('https://gitlab.com/vikramksm2009' , '_blank')
}
function one(){
window.open('https://ginyos.blogspot.com' , '_blank')
}
function two(){
window.open('https://tinyurl.com/ginyosbot' , '_blank')
}
function three(){
window.open('https://tinyurl.com/ginyos' , '_blank')
}
function four(){
window.open('https://vikramsrinivas.tech' , '_blank')
}
function five(){
window.open('http://code-with-ginyos.000webhostapp.com/' , '_blank')
}
function ginyos(){
window.open('http://ginyos.tk' , "_blank")
}
function six(){
window.open('https://vikramsrinivas.me ' , '_blank')
}
function greet(){
var name = document.querySelector('.name').value;
var txt = document.querySelector('.showtxt');
txt.textContent=`Welcome @${name}`;
}
function onReset(){
var txt = document.querySelector('.showtxt');
txt.textContent=" ";
}