-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (51 loc) · 2.24 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="styleM.css">
<meta name="viewport" content="width=500px, initial-scale=0.5, user-scalable=no">
<title>My Portfolio</title>
</head>
<body>
<header>
<button id="nav-toggle" class="nav-toggle-btn">
<i class="fas fa-bars"></i> <!-- Add appropriate icon for menu -->
</button>
<button id="theme-toggle" class="theme-toggle-btn">
<i class="fas fa-sun"></i>
</button>
<a href="#" class="logo"></a>
<nav>
<a href="#about" class="active">About</a>
<a href="projects.html">Projects</a>
<a href="experience.html">Experience</a>
<a href="cv.html">Resume</a>
</nav>
</header>
<section class="home">
<div class="home-img">
<img src="main.png" alt="">
</div>
<div class="home-content">
<h1>Hi, It's <span>Yassin</span></h1>
<h3 class="typing-text">I'm a <span></span></h3>
<p>
I'm passionate about turning ideas into reality with code. As a developper from ISET Kasserine, I specialize in Java, JavaScript, Python, and databases like MySQL and SQLite. I’m proficient with tools like VSCode and Eclipse IDE.</p>
<p>Looking forward to contribute in the IT world!</p>
<div class="social-icons">
<a href="https://www.linkedin.com/in/yassin-chaabani/" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://github.com/shadowxdgamer" target="_blank"><i class="fa-brands fa-github"></i></a>
<!-- <a href="#"><i class="fa-brands fa-x-twitter"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a> -->
</div>
<!-- <a href="#" class="btn">Hire me</a> -->
</div>
</section>
<!-- Rest of the index.html content remains unchanged -->
</body>
<script src="themeToggle.js">
</script>
</html>