-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (47 loc) · 1.45 KB
/
index.html
File metadata and controls
50 lines (47 loc) · 1.45 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="ja">
<head>
<meta charset="UTF-8">
<title>Azvlx - Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
</head>
<body>
<div class="card">
<div class="card-header">
<img src="avatar.png" alt="Avatar" class="avatar">
<div>
<h1>Azumi</h1>
<p class="tagline">Student / Gamer</p>
</div>
</div>
<div class="stat">
<span>Address</span>
<span>Japan</span>
</div>
<div class="stat">
<span>Age</span>
<span>17 y/o</span>
</div>
<div class="stat">
<span>Hobby</span>
<span>Game(Apex, osu, etc...)</span>
</div>
<div class="stat">
<span>Skill</span>
<span><i class="fab fa-python" aria-label="Python"></i> / <i class="fab fa-html5" aria-label="HTML5"></i></span>
</div>
<div class="sns-icons">
<a href="https://github.com/rumty" target="_blank" aria-label="GitHub">
<i class="fab fa-github"></i>
</a>
<a href="https://x.com/azvlx1" target="_blank" aria-label="X">
<i class="fab fa-x-twitter"></i>
</a>
<a href="https://discord.gg/xCEsF3CFHf" target="_blank" aria-label="Discord">
<i class="fab fa-discord"></i>
</a>
</div>
</body>
</html>