-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (69 loc) · 2.84 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
<html lang="en">
<head>
<!-- Metadata -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pynata Linktree</title>
<link rel="icon" href="assets/favicon.ico">
<!-- OG -->
<meta property="og:site_name" content="Pyñata | Computer Science Community">
<meta property="og:title" content="Pyñata Linktree">
<meta property="og:type" content="website">
<meta property="og:image" content="https://raw.githubusercontent.com/Pynata/PynataLab-01-Linktree/main/assets/PynataLab01.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="675">
<meta property="og:url" content="https://pynata.github.io/PynataLab-01-Linktree/">
<meta property="og:description"
content="Pynata Linktree in relations to Pynata Lab Workshop 01">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:image" content="https://raw.githubusercontent.com/Pynata/PynataLab-01-Linktree/main/assets/PynataLab01.png">
<meta name="author" content="Pynata">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<!-- Icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Font -->
<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=Cookie&family=Poppins:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<div id="line">
<img src="assets/Pynata.png" alt="Pynata Logo" class="profile swingimage">
</div>
<h1>Pynata Linktree</h1>
<div class="linkarea">
<!--1st Card-->
<div class="container">
<a href="https://discord.gg/fxPr86c5E9">
<div class="card">
<i class="fab fa-discord"></i>
Discord
</div>
</a>
</div>
<!--2nd Card-->
<div class="container">
<a href="https://www.linkedin.com/company/pynata/">
<div class="card">
<i class="fab fa-linkedin"></i>
LinkedIn
</div>
</a>
</div>
<!--2nd Card-->
<div class="container">
<a href="https://pynata.github.io/">
<div class="card">
<i class="fas fa-code"></i>
Website
</div>
</a>
</div>
</div>
<footer>
© Pynata, Community
</footer>
</body>
</html>