-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (62 loc) · 1.23 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
<meta name='viewport' content='width=device-width, initial-scale=1'/><!doctype html>
<html>
<head>
<title>MyWebPage</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<img class="I" src="https://i.ibb.co/cYrG1GH/IMG-20241206-215434-673.jpg">
<h1 class="nick">N3vPr0</h1>
<h2>ArchLinux User</h2>
<p class="hw">Hello, World</p>
<a href="https://t.me/N3vPr0"> <img class="icon" src="https://img.icons8.com/?size=100&id=63306&format=png&color=000000"> <span class="tg">Telegram</span>
</a>
</body>
</html><style>
body {
background-color: black;
color: white;
font-family: Times New Roman;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
.I {
height: 200px;
width: 200px;
border-radius: 200px;
margin-bottom: 20px;
position: relative;
left: 0px;
}
.nick {
text-align: center;
font-family: Comic Sans MS;
margin-bottom: 10px;
}
h2 {
text-align: center;
font-size: 18px;
margin-bottom: 10px;
}
.hw {
text-align: center;
margin-bottom: 20px;
}
.icon {
width: 25px;
height: 25px;
display: inline-block;
margin-right: 5px;
}
.tg {
text-decoration: none;
color: white;
}
a {
display: flex;
justify-content: center;
align-items: center;
width: fit-content;
}