-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
212 lines (203 loc) · 7.29 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolioseite</title>
<link rel="stylesheet" href="Portfolio.css" />
<!-- Verknüpft die EmailJS-Bibliothek -->
<script src="https://cdn.jsdelivr.net/npm/@emailjs/[email protected]/dist/email.min.js"></script>
</head>
<body>
<!-- Header mit Navigation -->
<header>
<nav class="navbar">
<button class="hamburger">☰</button>
<ul>
<li><a href="#home">Start</a></li>
<li><a href="#aboutMe">Über mich</a></li>
<li><a href="#music">Müsig</a></li>
<li><a href="#skills">Ziit</a></li>
<li><a href="#education">Üsbildig</a></li>
<li><a href="#contact">Kontakt</a></li>
</ul>
</nav>
<div class="image-container" id="home">
<img
class="header-image"
src="Images/HeaderImage.jpg"
alt="Portfolio HomeBild"
/>
<h1 class="header-title">Andrea Jasmin Zentriegen</h1>
</div>
</header>
<section id="aboutMe" class="about-me-section">
<!-- Bild mit Titel -->
<div class="about-image-container">
<h2>Über mich</h2>
<img src="Images/AboutMe.JPG" alt="About Me Bild" class="about-image" />
</div>
<!-- Textbox mit Infos -->
<div class="about-text">
<h2>Das bin ich</h2>
<p>
<span class="icon">👋</span> Sali, mine Namo isch Andrea und ich wohne im Wallis und in zBäro.
</p>
<p>
<span class="icon">💻</span> Ich bi Studentin und absolviere grat
mine Bachelor Wirtschaftsinformatik.
</p>
<p>
<span class="icon">🌄</span> Üf miner Portfoliosita gseht ihr selbstgmachti Fotos va miner Heimat.
</p>
<p>
<span class="icon">🛠️</span> Ich arbeito gäro zämo mit andre und hä da scho erfahrige chänno sammle.
</p>
<p>
<span class="icon">🧑💻</span> Nach minum Studium wellti ich inner IT arbeite und innovativi Idee umsetze.
</p>
</div>
</section>
<!-- Music Section -->
<section id="music" class="music-section">
<!-- Textbox mit Infos -->
<div class="music-content">
<h2>Playlist Mountain Vibes</h2>
<iframe
style="border-radius: 12px"
src="https://open.spotify.com/embed/playlist/5A6XYKhItMtm9FzWdsi9xM?utm_source=generator"
width="600" /* Anpassung hier irrelevant, da CSS die Grösse steuert */
height="400"
frameborder="0"
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"
></iframe>
</div>
<!-- Bild mit Titel -->
<div class="music-image-container">
<h2>Müsig</h2>
<img class="music-image" src="Images/Music.jpg" class="music-image" />
</div>
</section>
<!-- Skills -->
<section id="skills" class="skill-section">
<div class="skill-image">
<h2>Ziit</h2>
<img src="Images/Skills.JPG" alt="Skills Bild" />
</div>
<div class="skill-text">
<h2>Welli Ziit heiwer grat?</h2>
<div id="clock">
<div id="grid">
<span class="word" data-word="ES">ES</span>
<span class="word" data-word="ISCH">ISCH</span>
<span class="word" data-word="FÜNF">FÜÜF</span>
<span class="word" data-word="ZEHN">ZÄH</span>
<span class="word" data-word="VIERTEL">VIERTEL</span>
<span class="word" data-word="ZWANZIG">ZWÄNZIG</span>
<span class="word" data-word="HALB">HALBI</span>
<span class="word" data-word="VOR">VOR</span>
<span class="word" data-word="NACH">NACH</span>
<span class="word" data-word="EIN UHR">EIS</span>
<span class="word" data-word="ZWEI UHR">ZWEI</span>
<span class="word" data-word="DREI UHR">DRII</span>
<span class="word" data-word="VIER UHR">VIER</span>
<span class="word" data-word="FÜNF UHR">FÜÜF</span>
<span class="word" data-word="SECHS UHR">SÄGSCH</span>
<span class="word" data-word="SIEBEN UHR">SIBU</span>
<span class="word" data-word="ACHT UHR">ACHT</span>
<span class="word" data-word="NEUN UHR">NIIN</span>
<span class="word" data-word="ZEHN UHR">ZÄH</span>
<span class="word" data-word="ELF UHR">ELF</span>
<span class="word" data-word="ZWÖLF UHR">ZWÄLF</span>
</div>
</div>
</div>
</section>
<section id="education" class="education-section">
<div class="education-timeline">
<h2>Mini Üsbildig</h2>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-date">2018-2021</div>
<div class="timeline-content">
<h3>Lehr als Kauffrau im Kollegium Brig</h3>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">2021-2022</div>
<div class="timeline-content">
<h3>Brüfsmatura Wirtschaft anner BFO</h3>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">2022-2023</div>
<div class="timeline-content">
<h3>Start BSc Wirtschafts informatik bi der HES-SO</h3>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">2023-2026</div>
<div class="timeline-content">
<h3>BSc Wirtschafts informatik bi der BFH</h3>
</div>
</div>
</div>
</div>
<div class="education-image">
<h2>Education</h2>
<img src="Images/Education.JPG" alt="Education Bild" />
</div>
</section>
<!-- Contact -->
<section id="contact" class="contact-section">
<div class="contact-image">
<h2>Kontakt</h2>
<img src="Images/Contact.jpg" alt="Kontaktbild" />
</div>
<div class="contact-form">
<h2>Kontakt üfnah</h2>
<form id="contact-form">
<label for="firstname">Namo</label>
<input
type="text"
id="firstname"
name="firstname"
placeholder="Dine Namo"
required
/>
<label for="lastname">Familinamo</label>
<input
type="text"
id="lastname"
name="lastname"
placeholder="Dine Familinamo"
required
/>
<label for="email">E-Mail</label>
<input
type="email"
id="email"
name="email"
placeholder="Dini E-Mail"
required
/>
<label for="message">Nachricht</label>
<textarea
id="message"
name="message"
rows="5"
placeholder="Hie chasch dini Nachricht fer mich schriebe..."
required
></textarea>
<button type="submit">Absende</button>
</form>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2024 Andrea Jasmin Zentriegen. Alli Recht bi mir.</p>
</footer>
<!-- JavaScript -->
<script src="script.js"></script>
</body>
</html>