-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
69 lines (62 loc) · 3.46 KB
/
about.html
File metadata and controls
69 lines (62 loc) · 3.46 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sorting-Algorithms-in-Javascript</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/77ebb379f6.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="../css/main.css">
</head>
<body>
<nav class="navbar">
<div class="navbar__container wrapper">
<a href="javascript:void(0)"> <img src="/img/logo.svg" alt="Website logo"> </a>
<div class="navbar__list-container">
<ul class="navbar__list">
<li class="navbar__list-item"><a href="news.html" class="navbar__list-link">News</a></li>
<li class="navbar__list-item"><a href="algorithm.html" class="navbar__list-link">Algorithm</a></li>
<li class="navbar__list-item"><a href="about.html" class="navbar__list-link">About</a></li>
</ul>
</div>
<a href="#contact" class="navbar__btn">Contact us</a>
</div>
</nav>
<main>
<section class="about">
<div class="wrapper">
<div class="about__container">
<div class="about__text">
<h2 class="about__header">My name is Thomas...</h2>
<p class="about__description">
I'm a third year Applied Computer Science student at the AGH University of Science and
Technology in Krakow. I have been learning Front-End technologies for a year now and this
time was just enough to make sure that this is my place in the industry.</p>
<p class="about__description">This website is one of my university projects, but during the
process it turned out to be
one of my lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed id urna sed tortor
dignissim semper. Nulla nec dapibus urna, a ultrices ante. Etiam purus lorem, placerat vitae
hendrerit id, ultrices sed est. Phasellus scelerisque volutpat consectetur. Lorem ipsum
dolor sit amet, consectetur adipiscing elit.</p>
</div>
<img src="https://dummyimage.com/450x557/#c4c4c/fff.jpg&text=My+photo" alt="Image generator">
</div>
</div>
</section>
</main>
<footer class="footer wrapper">
<nav class="footer__nav-container">
<img src="/img/footer-logo.svg" alt="Website logo" class="footer__logo">
<ul class="footer__list">
<li class="footer__list-item"><a href="news.html" class="footer__list-link">News</a></li>
<li class="footer__list-item"><a href="algorithm.html" class="footer__list-link">Algorithm</a></li>
<li class="footer__list-item"><a href="about.html" class="footer__list-link">About</a></li>
</ul>
</nav>
<p class="footer__author-information">Copyright © 2020 Tomasz Gajda</p>
</footer>
</body>
</html>