-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
34 lines (30 loc) · 1016 Bytes
/
app.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
function insta() {
window.open("https://www.instagram.com/tinkerhubsjcet", "_blank");
}
function discord() {
window.open("https://tinkerhubsjcet.github.io/discord/", "_blank");
}
function linkedin() {
window.open("https://www.linkedin.com/company/tinkerhubsjcet", "_blank");
}
function twitter() {
window.open("https://www.twitter.com/tinkerhubsjcet", "_blank");
}
// Random no generator //
// function randomgenerator(min , max) {
// let no = Math.random() * max-min +1;
// no = Math.floor(no) + min;
// console.log(no);
// if(no == 1)
// document.body.style.background = "#215B67";
// else if(no == 2)
// document.body.style.background = "#96BF18";
// else if(no == 3)
// document.body.style.background = "#EE1702";
// else if(no == 4)
// document.body.style.background = "#FECD11";
// else if(no == 5)
// document.body.style.background = "#05BFCE";
// else
// document.body.style.background = "#0060FF";
// }