-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (84 loc) · 4.96 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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!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">
<link rel="stylesheet" href="main.css" type="text/css">
<link rel="stylesheet" href="media.css" type="text/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=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<title>CV Template</title>
</head>
<body>
<main>
<div class="container">
<div class="cv-wrapper">
<section class="persona">
<h1 class="persona__title">Alma Hedegaard</h1>
<div class="persona__info">
<div class="persona__info-item">
<img class="icon" src="./image/icons/briefcase.svg" alt="occupation">
<p class="persona__info-title text">Occupation</p>
<p class="persona__info-text text">Sales Manager</p>
</div>
<div class="persona__info-item">
<img class="icon" src="./image/icons/location.svg" alt="location">
<p class="persona__info-title text">Location</p>
<p class="persona__info-text text">Copenhagen, Denmark</p>
</div>
<div class="persona__info-item">
<img class="icon" src="./image/icons/person.svg" alt="age">
<p class="persona__info-title text">Age</p>
<p class="persona__info-text text">44</p>
</div>
<div class="persona__info-item">
<img class="icon" src="./image/icons/home.svg" alt="family">
<p class="persona__info-title text">Family</p>
<p class="persona__info-text text">Married. 2 children.</p>
</div>
</div>
<div class="persona__tech">
<h3 class="persona__tech-title">Tech</h3>
<p class="text persona__tech-text">Internet</p>
<div class="progress-bar">
<span style="width: 50%"></span>
</div>
<p class="text persona__tech-text">Social Media</p>
<div class="progress-bar">
<span style="width: 22%"></span>
</div>
<p class="text persona__tech-text">Online Shopping</p>
<div class="progress-bar">
<span style="width: 50%"></span>
</div>
</div>
</section>
<section class="desc">
<div class="desc__biography">
<h3 class="desc-title">Biography</h3>
<p class="text">Alma and her husband have 2 kids: a teenager and a 9-year-old. Now they can focus more on their carreers but their main worry is about their sons education and health. With a busy week days, the time they can really get togther as a family is during the dinners time and weekends. So their meal is a really special part of their days. She loves to use avocados in her diet. Interested in gardening.</p>
</div>
<div class="desc__needs">
<h3 class="desc-title">Needs</h3>
<ul class="desc__needs-list">
<li class="desc-text text">Be ready for holiday family gathering as well as for light dinner during the day.</li>
<li class="desc-text text">Find balance between feeling good about herself, being able to maintain her lifestyle, while contributing with the world.</li>
<li class="desc-text text">Wise choices of the brands and respect to environment and sustainability is fundamental for her.</li>
</ul>
</div>
<div class="desc__pain">
<h3 class="desc-title">Pain points</h3>
<p class="text">Alma need to find flexible solution that can help her to optimize her time while dedicating herself to her carreer, kids and making sure to maintain a health lifestyle. </p>
</div>
</section>
<section class="avatar">
<img src="./image/avatar.jpg" alt="avatar">
<q class="avatar__text"> It is very important for me to have fresh, tasty products at hand. </q>
</section>
</div>
</div>
</main>
</body>
</html>