-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (116 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Yunexiz</title>
<link rel="icon" type="image/x-icon" href="pfp.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Yunexiz" />
<meta property="og:description" content="Hey, I'm Yunexiz. I'm somewhat of a developer myself. I sometimes make Discord bots, API's or websites." />
<meta property="og:image" content="pfp.png" />
<meta property="og:url" content="https://yunexiz.is-a.dev/" />
<style>
body {
margin: 0;
padding: 0;
background-image: url('back-ground.png');
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Arial, sans-serif;
}
.info-box {
background-color: rgba(0, 0, 0, 0.7);
color: white;
padding: 20px;
margin: 20px;
border-radius: 25px;
text-align: center;
font-family: Arial, sans-serif;
max-width: 100vw;
}
.profile-img {
border-radius: 50%;
max-width: 100px;
}
.social-icons {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 20px;
max-width: 100vw;
}
.social-icons a {
display: inline-block;
margin: 0 10px;
width: 50px;
height: 50px;
overflow: hidden;
border-radius: 50%;
}
.social-icons img {
width: 100%;
height: 100%;
transition: transform 0.2s ease-in-out;
border-radius: 50%;
}
.social-icons img:hover {
transform: scale(0.9);
border: none;
}
</style>
</head>
<body>
<div class="info-box">
<img src="pfp.png" alt="Profile Picture" class="profile-img"><br>
<div>
<span style="font-size: 20px;">Yunexiz</span><br>
<p>Hey, my name's Yosuke Nishiyama (Yunexiz). I'm somewhat of a developer myself.<br> I make bots, API's and websites for fun.<br> <br> <strong>(Hover over icons for details or click to go to link.)</p></strong>
</div>
<div class="social-icons">
<div title="Yunexiz">
<a href="https://reddit.com/user/Yunexiz">
<img src="reddit.png" alt="Reddit">
</a>
</div>
<div title="Yunexiz">
<a href="https://github.com/Yunexiz">
<img src="github.png" alt="GitHub">
</a>
</div>
<div title="Yunexiz">
<a href="https://gitlab.com/Yunexiz">
<img src="gitlab.png" alt="GitLab">
</a>
</div>
<div title="Yunexiz">
<a href="https://twitter.com/Yunexiz">
<img src="twitter.png" alt="Twitter">
</a>
</div>
<div title="yunexiz">
<a href="https://discord.com/users/1040303561847881729">
<img src="discord.png" alt="Discord">
</a>
</div>
<div title="Yunexiz#6689">
<a href="/riot.html">
<img src="riot.png" alt="Riot">
</a>
</div>
<div title="My websites">
<a href="/domains.html">
<img src="domains.jpg" alt="Domains">
</a>
</div>
<div title="Yunexiz">
<a href="https://myanimelist.net/animelist/Yunexiz">
<img src="mal.png" alt="MyAnimeList">
</a>
</div>
</div>
</div>
</body>
</html>