-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquicklinks.html
More file actions
50 lines (44 loc) · 1.99 KB
/
quicklinks.html
File metadata and controls
50 lines (44 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<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>Quick Links</title>
<link rel="stylesheet" href="./css/quicklinks.css">
</head>
<body>
<header class="container">
<a id="btn-back" href="../index.html"><span style="
font-size: 1.2rem;
margin-bottom: .2rem;
display: inline-block;
/* padding-bottom: 0.2rem; */
">👈</span>home</a>
<!-- <h1 class="page-title">Sharing useful random things</h1> -->
<h1 class="page-title">Quick Links</h1>
</header>
<main class="container">
<section class="container container--links">
<h2 class="page-title--secondary">Recently added to website</h2>
<ul class="list list--recent">
<li class="list__item"><a href="./random/index.html#dont_use_ws_trade_for_crypto">Why I Don't use
WEALTH SIMPLE TRADE
for Crypto</a></li>
<!-- <li class="list__item"><a href="http://"></a></li>
<li class="list__item"><a href="http://"></a></li> -->
</ul>
</section>
<section class="container container--links">
<h2 class="page-title--secondary">Other useful links</h2>
<ol class="list">
<li class="list__item"><a class="list__link" href="https://haveibeenpwned.com/">';--have i been
pwned?</a>
<p class="list__info">Check if your email, password, phone number was leaked in any of the major
hacks that are happening every couple of seconds, months, etc.</p>
</li>
</ol>
</section>
</main>
</body>
</html>