-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (68 loc) · 3.15 KB
/
index.html
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans&display=swap" rel="stylesheet" />
<title>TinkerHub SJCET</title>
<link rel="icon" href="resources/img2.jpg">
</head>
<!-- <body onload="randomgenerator(1,6)"> -->
<body>
<div class="container">
<div class="d-flex justify-content-center">
<div>
<img class="logo mb-4 mt-5" src="resources/img.jpeg" alt="TinkerHub-SJCET">
<h5 class="logo-text">TinkerHub SJCET</h5>
</div>
</div>
<div class="row mt-5">
<div class="d-flex justify-content-center col-lg-12 col-md-12 col-sm-12">
<div class="card" onclick="insta()">
<div class="card-body text-center">
<img class="icon instagram" src="resources/instagram.gif" alt="Instagram">
<h6 class="insta-txt">Instagram</h6>
</div>
</div>
</div>
<div class="d-flex justify-content-center mt-4 col-lg-12 col-md-12 col-sm-12">
<div class="card" onclick="discord()">
<div class="card-body text-center">
<img class="icon discord" src="resources/discord.gif" alt="Discord">
<h6 class="discord-txt">Discord</h6>
</div>
</div>
</div>
<div class="d-flex justify-content-center mt-4 col-lg-12 col-md-12 col-sm-12">
<div class="card" onclick="linkedin()">
<div class="card-body text-center">
<img class="icon linkedin" src="resources/linkedin.gif" alt="Linkedin">
<h6 class="link-txt">LinkedIn</h6>
</div>
</div>
</div>
<div class="d-flex justify-content-center mt-4 col-lg-12 col-md-12 col-sm-12 mt-3">
<div class="card" onclick="twitter()">
<div class="card-body text-center">
<img class="icon twitter" src="resources/twitter.gif" alt="Twitter">
<h6 class="twt-txt">Twitter</h6>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<script src="app.js"></script>
</body>
</html>