-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinternational_mobility.html
64 lines (58 loc) · 3.03 KB
/
international_mobility.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="mediaqueries.css">
<script src="script.js" defer></script>
<title>International mobility</title>
</head>
<body>
<nav id="desktop-nav">
<div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="engineering_course.html">Engineering course</a></li>
<li><a href="career_development.html">Career development</a></li>
<li><a href="international_mobility.html">International mobility</a></li>
<li><a href="engagement_and_activities.html">Activities & Civic Engagement</a></li>
</ul>
</div>
</nav>
<nav id="hamburger-nav">
<div class="hamburger-menu">
<div class="hamburger-icon" onclick="toggleMenu()">
<span></span>
<span></span>
<span></span>
</div>
<div class="menu-links">
<li><a href="index.html" onclick="toggleMenu()">Home</a></li>
<li><a href="engineering_course.html" onclick="toggleMenu()">Engineering course</a></li>
<li><a href="career_development.html" onclick="toggleMenu()">Career development</a></li>
<li><a href="international_mobility.html" onclick="toggleMenu()">International mobility</a></li>
<li><a href="engagement_and_activities.html" onclick="toggleMenu()">Activities & Civic Engagement</a></li>
</div>
</div>
</nav>
<h1 class="title">International mobility</h1>
<div>
<img src="assets/image/Flag_of_Italy_Flat_Wavy-512x393.png" alt="Italy">
<p>I came into this world in 2003 in Rome, the capital of Italy. I spent my early years there, going to primary school until I turned nine in 2012.</p>
</div>
<div>
<img src="assets/image/Flag_of_Morocco_Flat_Wavy-512x393.png" alt="Morocco">
<p>In 2012, my parents made the decision to go back to Morocco, my home country, and more specifically to Beni Mellal, a small city in the heart of Morocco. I continued my education there until I completed my baccalaureate, and I even pursued my first year of preparatory classes in that city.</p>
<p>During the second year, I moved on to study my second year of preparatory classes at a more prestigious institution, Al Zahrawi, situated in Rabat.</p>
</div>
<div>
<img src="assets/image/Flag_of_France_Flat_Wavy-512x393.png" alt="France">
<p>And now, I find myself residing in France, where I am currently pursuing my studies at ENSEEIHT, an engineering school located in Toulouse.</p>
</div>
<div>
<img src="assets/image/questionmark.png" alt="future">
<p>In the upcoming years, I'm uncertain about my future residence or destinations. I am particularly intrigued by the dual-degree programs our school provides, such as the opportunity to pursue a master's degree at universities like Georgia Tech and EPFL.</p>
</div>
</body>
</html>