-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (37 loc) · 1.3 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wizytówka</title>
<link href="css/normalize.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<main class="main">
<article class="person">
<img
src="img/zdj_do_dokumentow.jpg"
class="person__picture"
alt="Zdjęcie Oli Janczewskiej"
/>
<div>
<header class="person__info">
<h1 class="person__name">Aleksandra Janczewska</h1>
<p class="person__position">studentka</p>
</header>
<p class="person__description">
Studentka
<strong class="special">matematyki stosowanej</strong>,
na Politechnice Wrocławskiej.
</p>
<p class="person__contact">
W sieci: <a href="https://www.facebook.com/ola.janczewska.90/" class="person__link">Facebook</a>,
<a href="https://github.com/ajanczewska" class="person__link">GitHub</a>,
<a href="https://www.instagram.com/janczewska.ola/" class="person__link">Instagram</a>.
</p>
</div>
</article>
</main>
</body>
</html>