-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.45 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wizytówka</title>
<link href="normalize.css" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<main class="main">
<article class="person">
<img class="person__picture" src="avatar1.jpg" height="200" alt="Zdjęcie Imię i nazwisko"/>
<div>
<header class="person__info">
<h1 class="person__name"> </h1> <strong>Anna Gaładyk</strong></h1>
<p class="person__position">początkujący frontendowiec</p>
</header>
<p class="person__description person__description--with-margin">
Nauczyciel z kilkunastoletnim doświadczeniem, mama dwóch wspaniałych córek.
<strong class="special">Interesuje się zdrową żywnością, rysunkiem, zabawą z dziećmi, fotografią.</strong>
Kocha ciszę i spokój, ale nie pogardzi dobrą zabawą.
</p>
<p class="person__description">
W sieci:
<a class="person__link" href="https://www.facebook.com/profile.php?id=100002964351880">Facebook</a>,
<a class="person__link" href="https://github.com/AniaGall/">GitHub</a>.
<!-- <a class="person__link" href="www.instagram.com">Instagram</a>.</p> -->
</div>
</article>
</main>
</body>
</html>