-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinks.html
72 lines (72 loc) · 2.75 KB
/
links.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Raven's portfolio</title>
<link rel="stylesheet" href="./src/style/links.css">
</head>
<script src="./src/app/language.js"></script>
<body>
<header id="headLinkList">
<ul>
<li><a id="liHome" href="./index.html">Home</a></li>
<li id="liLinks">Links</li>
<li><a id="liGal" href="https://t.me/Raven_photos">Gallery</a></li>
<li><select name="" id="langSelect">
<option value="en">English</option>
<option value="fr">Français</option>
<option value="no">Norsk</option>
</select></li>
</ul>
</header>
<button id="menuToggle"><img src="./src/img/menuIcon.png" alt=""></button>
<section class="content">
<ul>
<li class="linkli"><a href="https://t.me/Raven_photos">
<img src="./src/img/icon/telegram.png" alt="">
<div>
<h2>Telegram channels</h2>
<p>Where i post my photos</p>
</div>
</a></li>
<li class="linkli"><a href="https://t.me/Robin888b">
<img src="./src/img/icon/telegram.png" alt="">
<div>
<h2>Telegram account</h2>
<p>To send me privates messages</p>
</div>
</a></li>
<li class="linkli"><a href="https://www.instagram.com/robin888b">
<img src="./src/img/icon/insta.png" alt="">
<div>
<h2>Instagram</h2>
<p>Everything and anything, all of the time</p>
</div>
</a></li>
<li class="linkli"><a href="https://bsky.app/profile/robin888b.bsky.social">
<img src="./src/img/icon/bluesky.png" alt="">
<div>
<h2>Bluesky</h2>
<p>like twitter, but doesn't belong to a nazi</p>
</div>
</a></li>
<li class="linkli"><a href="https://github.com/Robin888b">
<img src="./src/img/icon/github.png" alt="">
<div>
<h2>Github</h2>
<p>The code of my open-sources projects</p>
</div>
</a></li>
<li class="linkli"><div id="discordl">
<img src="./src/img/icon/discord.png" alt="">
<div>
<h2>Discord</h2>
<p>Only for people I know <br><code>@Robin888b</code></p>
</div>
</div></li>
</ul>
</section>
</body>
<script src="./src/app/app.js"></script>
</html>