-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (69 loc) · 3.34 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">
<title>Ikram's e-portfolio</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="mediaqueries.css">
</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>
<section id="profile">
<div class="hi_profile">
<p class="section__text__p1">Hi, I'm</p>
<h1 class="section_profile_title">Ikram Berroug</h1>
<p class="section__text__p1">HPC and Big Data engineering student @ ENSEEIHT</p>
</div>
<div class="socials_container">
<img src="./assets/image/logo-linkedin.png" alt="My linkedin profile"
class="icon" onclick="location.href='https://www.linkedin.com/in/ikram-berroug-7b8195293/'">
<img src="./assets/image/github-logo.png" alt="My github profile"
class="icon" onclick="location.href='https://github.com/ikramberroug'">
<img src="./assets/image/LeetCode.png" alt="My leetcode profile"
class="icon" onclick="location.href='https://leetcode.com/u/ikramberroug/'">
</div>
<div class="About_Me">
<h2>About Me</h2>
<p>I am passionate about technology, engineering, and continuous learning. I love solving complex problems and creating innovative solutions that make a difference. My goal is to contribute to a sustainable future through technology and collaboration.</p>
</div>
</section>
<section id="contact">
<h1 class="title">Contact me!</h1>
<div class="contact-info-upper-container">
<div class="contact-info-container">
<img src="./assets/image/email.png" alt="Email icon" class="icon contact-icon"/>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>