-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
108 lines (91 loc) · 3.29 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8 UTF-16">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/styles.css">
<script src="https://kit.fontawesome.com/50ca4bca32.js" crossorigin="anonymous"></script>
<script src="./script/weather.js" async></script>
<script src="./script/time.js" async></script>
<script src="./script/themes.js" async></script>
<title>Welcome</title>
</head>
<body>
<img class="image grow" alt="main image" src="/img/gold.jpg">
<div class="content-container">
<div class="header-container">
<h1>Welcome, Ameer</h1>
<div class="status-strip">
<span class="date"></span>
<span> | </span>
<span class="time"></span>
<span> | </span>
<span class="weather"></span>
</div>
</div>
<div class="card-container">
<!---Social container-->
<div class="container">
<h2 class="title">
<i class="fa-solid fa-envelope"></i>
Social
</h2>
<div class="links"></div>
<a href="https://www.twitter.com">Twitter</a>
<a href="https://reddit.com">Reddit</a>
<a href="https://dev.to/">Dev.to</a>
<a href="https://proton.me/">Proton</a>
</div>
<!---Developer Container-->
<div class="container">
<h2 class="title">
<i class="fa-solid fa-terminal"></i>
Dev
</h2>
<div class="links"></div>
<a href="https://www.codecademy.com/">Codecademy</a>
<a href="https://www.github.com">Github</a>
<a href="https://developer.mozilla.org/en-US/">MDN Docs</a>
<a href="https://Javascript.info/">Javascript.info</a>
</div>
<!---Reading Container-->
<div class="container">
<h2 class="title">
<i class="fa-solid fa-book"></i>
Read
</h2>
<div class="links"></div>
<a href="https://www.Goodreads.com/">Goodreads</a>
<a href="https://www.medium.com/">Medium</a>
<a href="https://libgen.is/">Libgen</a>
<a href="https://www.creepypasta.com/">CreepyPasta</a>
</div>
<!---Linux Container-->
<div class="container">
<h2 class="title">
<i class="fa-brands fa-linux"></i>
Linux
</h2>
<div class="links"></div>
<a href="https://explainshell.com/">Explainshell</a>
<a href="https://wiki.archlinux.org/">Arch Wiki</a>
<a href="https://distrowatch.com/">Distrowatch</a>
<a href="https://www.reddit.com/r/unixporn/">Unix Porn</a>
</div>
<!---Hack Container-->
<div class="container">
<h2 class="title">
<i class="fa-solid fa-mask"></i>
Hack
</h2>
<div class="links"></div>
<a href="https://www.hackthebox.com/">HTB</a>
<a href="https://tryhackme.com/">TryHackMe</a>
<a href="https://owasp.org/www-project-top-ten/">OWASP Top 10</a>
<a href="https://any.run/">Any.run</a>
</div>
</div>
</div>
</body>
</html>