-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
132 lines (102 loc) · 3.87 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>~ / links</title>
<link rel="stylesheet" href="style.css">
<!-- favicon normal-->
<link rel="icon" href="img/favicon.png" type="image/jpg" >
</head>
<body>
<section id="about" class="about">
<div class="logo">
<img class="logo" src="img/logo.jpg" alt="logo">
</div>
<div class="name">
<h1>aviiciii</h1>
</div>
<div class="description">
<p>Student Developer :) </p>
</div>
<div class="socials">
<ul class="socials-ul">
<!-- github -->
<li class="socials-li">
<a class="socials-a" href="https://github.com/aviiciii" target="_blank">
<img class="socials-img" width="50" height="50" src="https://img.icons8.com/ios/50/github--v1.png" alt="github--v1"/>
</a>
</li>
<!-- linkedin -->
<li class="socials-li">
<a class="socials-a" href="https://www.linkedin.com/in/laavesh/" target="_blank">
<img class="socials-img" width="50" height="50" src="https://img.icons8.com/ios/50/linkedin-2--v1.png" alt="linkedin--v1"/>
</a>
</li>
<!-- instagram -->
<li class="socials-li">
<a class="socials-a" href="https://www.instagram.com/llvssh/" target="_blank">
<img class="socials-img" width="50" height="50" src="https://img.icons8.com/ios/50/instagram.png" alt="instagram-new--v1"/>
</a>
</li>
<!-- add others here -->
</ul>
</div>
</section>
<section id="links">
<!-- Start of a Tab -->
<div class="link-container">
<!-- Start of links -->
<div class="link-list">
<a class="link-a" href="https://portfolio.laavesh.xyz/" target="_blank">
My Portfolio
</a>
</div>
</div>
<!-- End of a Tab -->
<!-- Start of a Tab -->
<div class="link-container">
<div class="link-header">
<h2>Utility</h2>
</div>
<!-- Start of links -->
<div class="link-list">
<a class="link-a" href="https://clip.laavesh.xyz/" target="_blank">
Clipboard
</a>
<a class="link-a" href="https://short.laavesh.xyz/" target="_blank">
Link Shortener
</a>
<a class="link-a" href="https://qr.laavesh.xyz/" target="_blank">
QR Generator
</a>
<a class="link-a" href="https://note.laavesh.xyz/" target="_blank">
Notepad
</a>
</div>
</div>
<!-- End of a Tab -->
<div class="link-container">
<div class="link-header">
<h2>Pages</h2>
</div>
<!-- Start of links -->
<div class="link-list">
<a class="link-a" href="https://pages.laavesh.xyz/" target="_blank">
First Webpage
</a>
<a class="link-a" href="https://aviiciii.github.io/google_search/" target="_blank">
Google Replica
</a>
</div>
</div>
</section>
<section id="footer">
<footer>
<p>© Copyright <span id="copyright"></span>, aviiciii</p>
</footer>
</section>
<!-- scripts -->
<script src="script.js"></script>
</body>
</html>