-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (40 loc) · 2 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
<!DOCTYPE html> <!--To tell the browser I am Using HTML 5 -->
<html lang="en">
<head>
<title>yashd@itlab > echo "Homepage"</title>
</head>
<link rel="stylesheet" href="style.css">
<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=Source+Code+Pro:wght@400;700&display=swap" rel="stylesheet"> <!--To use Google Fonts-->
<body>
<p> <span> yashd@itlab ></span> touch grass.txt</p>
<p><span> yashd@itlab ></span> vi grass.txt </p>
<h4>//Welcome to My Page</h4>
<table border="2" align="centre">
<tr>
<td> Some Apps I Use Daily </td>
<td> Why I Use them </td>
</tr>
<tr>
<td> <a href="https://www.bromite.org/" target="_blank" rel="noopener noreferrer"> Bromite</a> <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Bromite_logo.svg/384px-Bromite_logo.svg.png?20220214133822" height="20px"> </td> <!--- target="_blank" is used to open in new tab -->
<!--rel="noopener noreferrer" Is to prevent Tabnabbing -->
<td> A Chromium Fork with Adblocker </td>
</tr>
<tr>
<td> <a href="https://newpipe.net/" target="_blank" rel="noopener noreferrer"> NewPipe</a> <img src="https://newpipe.net/img/logo.svg" height="20px"> </td>
<td> A Youtube Client with Privacy in mind </td>
</tr>
<tr>
<td> <a href="https://github.com/FunkyMuse/Vigilante" target="_blank" rel="noopener noreferrer"> Vigilante </a> </td>
<td> A Security Alert App </td>
</tr>
<tr>
<td> <a href="https://blokada.org/" target="_blank" rel="noopener noreferrer"> Blockada</a> <img src="https://blokada.org/img/brand/white.png" height="20px"> </td>
<td> A Full Device Adblocker </td>
</tr>
</table>
<p>:wq!</p>
<p> <span> yashd@itlab ></span> _ </p>
</body>
</html>