-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
72 lines (51 loc) · 2.41 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>laitdsgn - About</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&icon_names=keyboard_arrow_up" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<div class="container-fluid p-0">
<header >
<nav id="menu_container">
<a href="index.html"><img src="res/my_logo.png" alt="my logotype" id="my_logo"></a>
<div id="menu">
<a href="index.html">Home</a>
<a href="contact.html">Contact</a>
<a href="about.html">About me</a>
<a href="siteinfo.html">Website</a>
</div>
</nav>
</header>
<main>
<div class="start2">
<h1 id="title2">more info about me</h1>
<p id="aboutme">My name is Tomek, I started programming when i was 15 and I really enjoy it, especially Web Development. I go to highschool in Poland </p>
</div>
<div class="middle">
<h2 id="quote">
"It's not a bug. It's an undocumented feature" - idk who said that
</h2>
</div>
<div class="end" id="endvalues">
<h3 id="value" >What do I value?</h3>
<ul id="w-value" class="w-value">
<li>Being kind</li>
<li>Understanding</li>
<li>Sympathy</li>
<li>Good atmosphere</li>
</ul>
</div>
</main>
<footer>
made by laitdsgn. © 2024
</footer>
<a href="#" class="back-to-top"><span class="material-symbols-outlined">keyboard_arrow_up</span></a>
</div>
<script src="scripts/showvalues.js"></script>
</body>
</html>