This repository was archived by the owner on Apr 25, 2026. It is now read-only.
forked from sethcottle/littlelink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (65 loc) · 3.67 KB
/
Copy pathindex.html
File metadata and controls
91 lines (65 loc) · 3.67 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<!--
To change the theme, change the class on the html tag below to one of:
- theme-auto: Automatically switches based on user's system preferences
- theme-light: Forces light theme
- theme-dark: Forces dark theme
-->
<html class="theme-auto" lang="en"> <!-- Update`class="theme-auto" with your preference -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Page Title - Change this to your name/brand (50-60 characters recommended) -->
<title>IronoNSC Links</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico"> <!-- Update this with your own favicon -->
<!-- Meta Description - Write a description (150-160 characters recommended) -->
<meta name="description" content="HELLO!">
<!-- Keywords -->
<meta name="keywords" content="your name, industry, and specialties">
<!-- Canonical URL - Helps prevent duplicate content issues -->
<meta rel="canonical" href="https://yourwebsite.com">
<!-- Author Information -->
<meta name="author" content="Your Name">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/brands.css">
<!-- LittleLink Extended Stylesheet (Optional) -->
<!-- <link rel="stylesheet" href="css/brands-extended.css"> -->
<!-- Learn more at https://github.com/sethcottle/littlelink-extended.
Remove comments if you've added LittleLink Extended dependencies -->
</head>
<body>
<div class="container">
<div class="column">
<!--
By default, the Avatar is rounded. Use the following:
- avatar--rounded: Automatically rounds the image
- avatar--soft: Slightly rounds the image
- avatar--none: Removes any rounding
Be sure to replace the src with your own image path and update the alt text
-->
<img class="avatar avatar--none" src="images/avatar.png" alt="IronoNSC Icon">
<!-- Replace with your name or brand -->
<h1>
<img class="logo" src="images/logo.png" alt="IronoNSC">
</h1>
<!-- Add a short description about yourself or your brand -->
<p>HELLO! :3</p>
<!-- All your buttons go here -->
<div class="button-stack" role="navigation">
<!-- YouTube Channel -->
<a class="button button-youtube-channel" href="https://www.youtube.com/channel/UCQGMtOAuEUa0_P0B9Pr-Ffg" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/YouTube.svg" alt="YouTube Channel icon">YouTube Channel</a>
<!-- My Website -->
<a class="button button-my-website" href="https://ikkqqstudio.codeberg.page/" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/konqueror.png" alt="My Website icon">My Website</a>
<!-- Friendica Profile -->
<a class="button button-friendica" href="https://friendica.world/profile/irononsc/profile" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/FriendicaLogo.png" alt="Friendica icon">Friendica Profile</a>
</div>
<!-- Feel free to add your own footer information, including updating `privacy.html` to reflect how your LittleLink fork is set up -->
<footer>
<a href="privacy.html">Privacy Policy</a> | Build your own by forking <a href="https://littlelink.io" target="_blank" rel="noopener">LittleLink</a>
</footer>
</div>
</div>
</body>
</html>