-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
57 lines (53 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About</title>
<link rel="stylesheet" href="styles.css" />
<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=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Playwrite+CU:wght@100..400&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="wrapper">
<header>
<h1 class="web-title">
<a href="#">paulinaszy</a>
</h1>
<nav class="nav-links">
<ul>
<li><a href="main.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="index.html">Typescript</a></li>
</ul>
</nav>
</header>
<main class="middle" style="width: 600px">
<section class="top-content">
<h1>Who am I?</h1>
<p>
Hey, this is work in progress - please come back later! <br /><br />
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec
varius ultricies malesuada. Vestibulum et dignissim nunc, quis
vestibulum nulla. Mauris sed ante sed neque efficitur faucibus. Nunc
a mattis turpis. Curabitur maximus blandit pulvinar. Fusce in odio
at quam vulputate gravida at quis mauris. Proin auctor in est vitae
lobortis.
</p>
</section>
</main>
<footer class="bottom">
<p>All rights reserved © <span>Paulina Szymkiewicz</span></p>
</footer>
</div>
</body>
</html>