-
Notifications
You must be signed in to change notification settings - Fork 0
/
About.html
41 lines (36 loc) · 1.03 KB
/
About.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
<!DOCTYPE html>
<html>
<title>About me</title>
<style>
.class1{
margin: 0;
position: absolute;
top: 40%;
left: 49%;
margin-right: -50%;
transform: translate(-50%, -50%)
}
a {
color: red;
text-decoration: none;
}
a:hover {
color: red;
text-decoration: underline;
}
</style>
<body style="background-color:black;">
<div class="class1">
<pre style="color: white;">
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: ::
:: Name: Marius ::
:: Interests: Programming, Cybersec ::
:: ::
:: ::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
<a href="index.html">Back to menu</a>
</pre>
</div>
</body>
</html>