-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
40 lines (35 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My own website - About</title>
<link rel="stylesheet" href="styles_about.css">
<link rel="icon" type="image/x-icon" href="images/favicon.png">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="games.html">Games</a><li></li>
</ul>
</nav>
<section class="main1">
<div class="desc1">
<h1>Introduction</h1>
<p>Welcome to my website! This is my first real website that I made. I'm probably going to use it for my personal stuff in the future.</p>
<h1>Career</h1>
<p>I'm currently studying Cyber Security at <a href="https://www.cichnovabrno.cz/" class="link1">Secondary School of Informatics, Post and Finance Brno</a>.</p>
<h1>About me</h1>
<p>Except for studying, I also enjoy playing games. I especially like the <a href="https://en.wikipedia.org/wiki/Arma_(series)" class="link1">Arma series.</a>
Recently, I also got into playing <a href="https://www.rockstargames.com/reddeadredemption2" class="link1">Red Dead Redemption 2</a>, which I enjoy for It's story.
<br> I also enjoy reading, watching films/series and playing board games.
</p>
</div>
</section>
<footer>
<p>© 2024 Hery Licensed under the <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA license.</a></p>
</footer>
</body>
</html>