-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (80 loc) · 3.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rihem Taboubi Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#" class="btn">Resume</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home">
<h1>Welcome to My Portfolio</h1>
<p>Hi, I'm Rihem Taboubi ,<span>Software</span> Engineering Student.</p>
</section>
<section id="about">
<h2>About Me</h2>
<P>Motivated and results-driven Software Engineering student.
Currently in my fourth year of engineering
studies.
I am continuously seeking opportunities to apply my skills through internships, collaborative projects, and open-source contributions.</p>
<a href="#" class="btn">Download CV</a>
</section>
<section id="projects">
<h2>My Projects</h2>
<div class="project">
<h3>Zanicare</h3>
<p> It is website dedicated to enhancing animal well-being through comprehensive care and proper nutrition. It serves as a platform to provide information on veterinary services, nutritious food options, and safe shelters for stray, abandoned, and neglected animals. </p>
</div>
<div class="project">
<h3>Online Quizz game</h3>
<p>Online quiz game where a server asks questions, and multiple clients compete to answer them. clients are allowed to see the leaderboard.</p>
</div>
<!-- Add more projects as needed -->
</section>
<section id="skills" class="section skills">
<h2>Skills</h2>
<ul class="skills-list">
<li>JavaScript</li>
<li>HTML & CSS</li>
<li>React</li>
<li>Node.js</li>
<li>Python</li>
<li>Angular</li>
<li>SQL</li>
<!-- Add more skills as needed -->
</ul>
</section>
<section id="contact">
<h2>Contact Me</h2>
<form id="contact-form">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send</button>
</form>
</section>
<button id="back-to-top" title="Back to Top">↑</button>
<footer>
<p> Follow me on
<a href="https://www.linkedin.com/in/taboubi-rihem-3a3782231/" target="_blank">LinkedIn</a> and
<a href="https://github.com/Rihem-taboubi" target="_blank">GitHub</a>.
</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>