-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
138 lines (136 loc) · 4.67 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!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>Who am I?</title>
<meta name="description" content="The Carrer Journey of Muriel Cishek" />
<meta name="author" content="Muriel Cishek" />
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<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@100;200;300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,700;0,900;1,100;1,300;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://unpkg.com/normalize.css@latest/normalize.css"
/>
</head>
<body>
<nav class="header navigation">
<a class="nav-link" href="#aboutme">About me</a>
<a class="nav-link" href="#experience">Experience</a>
<a class="nav-link" href="#education">Education</a>
<a class="nav-link" href="#courses">Courses</a>
<a class="nav-link" href="#skills">Skills</a>
<a class="nav-link" href="#languages">Languages</a>
<a class="nav-link contact" href="#contact">Contact</a>
<aside class="hire-me">Hire Me</aside>
</nav>
<header class="header">
<h1>I am Muriel Cishek <br /></h1>
<p class="iam">From an Architect <em>to Frontend- Developer</em></p>
</header>
<main class="main">
<article class="profile" id="aboutme"><h2>ABOUT ME</h2></article>
<!--Profile-->
<p class="profile">
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Assumenda
fugit eum ducimus iure quam, tempora perferendis accusamus itaque saepe,
quia odio ratione quidem optio placeat sunt numquam, laboriosam
expedita. Facilis?
</p>
<article id="experience">
<h2>EXPERIENCE</h2>
<section>
<header>
<h3 class="experience-heading">
Architektin <br />
Meides Schoop Architekten Gbr
</h3>
<p class="experience-subheading">02/2022-12/2022</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Error
neque veritatis, aliquam earum eveniet rem fugiat veniam voluptas
velit harum fugit quod enim cumque! Tenetur unde expedita
exercitationem suscipit? Eligendi!
</p>
</header>
</section>
<section>
<header>
<h3 class="experience-heading">
Junior Architektin <br />
busl.ppm
</h3>
<p class="experience-subheading sub">05/2020-10/2021</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Error
neque veritatis, aliquam earum eveniet rem fugiat veniam voluptas
velit harum fugit quod enim cumque! Tenetur unde expedita
exercitationem suscipit? Eligendi!
</p>
</header>
</section>
</article>
<article id="education">
<h2>EDUCATION</h2>
</article>
<article id="courses">
<h2>COURSES</h2>
<section><h3>Coding Bootcamps EU</h3></section>
</article>
<article id="skills">
<h2>SKILLS</h2>
<section>
<h3>Soft Skills</h3>
<ul>
<li>Teamplayer</li>
<li>Resilience</li>
<li>Empathy</li>
</ul>
</section>
<section>
<h3>Technical Skills</h3>
<ul>
<li>Adobe(Photoshop, Indesing, Illustrator)</li>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
<li>React</li>
<li>Git</li>
<li>Figma</li>
<li>MS-Office</li>
</ul>
</section>
</article>
<article id="languages">
<h2>LANGUAGES SKILLS</h2>
<ul>
<li>Spanisch</li>
<li>Englisch</li>
<li>German</li>
</ul>
</article>
<article id="contact">
<h2>Let's Talk</h2>
<ol>
<li>
E-mail:<a href="mailto:[email protected]"
>
</li>
<li>
Github:<a href="https://github.com/Murielcibra"> Murielcibra</a>
</li>
</ol>
<!--Contact me-->
</article>
</main>
</body>
</html>