-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (84 loc) · 3.84 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
<!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>Othman SAMIH</title>
<!-- Favicon -->
<link rel="shortcut icon" href="assets/images/favicon.png" type="image/x-icon">
<!-- Remix Icons -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Header Profile -->
<header class="profile container">
<!-- Theme Button -->
<i class="ri-moon-line change-theme" id="theme-button"></i>
<div class="profile_container grid">
<div class="profile_data">
<div class="profile_border">
<div class="my_profile">
<!-- Insert your image -->
<img src="assets/images/profile6.jpeg" alt="Profile Picture">
</div>
</div>
<h2 class="profile_name">Othman SAMIH</h2>
<h3 class="profile_profession">Master's Student in Artificial Intelligence at ENSET</h3>
<ul class="profile_social">
<a href="https://www.instagram.com/othman__samih/" target="_blank" class="profile_social_link">
<i class="ri-instagram-line"></i>
</a>
<a href="https://www.linkedin.com/in/othman-samih-b50010206/" target="_blank" class="profile_social_link">
<i class="ri-linkedin-box-line"></i>
</a>
<a href="https://github.com/osamih1" target="_blank" class="profile_social_link">
<i class="ri-github-line"></i>
</a>
</ul>
</div>
<div class="profile_info grid">
<div class="profile_info_group">
<h3 class="profile_info_number">2</h3>
<p class="profile_info_description">Years in the<br> IT Field</p>
</div>
<div class="profile_info_group">
<h3 class="profile_info_number">+20</h3>
<p class="profile_info_description">Completed <br> projects</p>
</div>
<div class="profile_info_group">
<h3 class="profile_info_number">7</h3>
<p class="profile_info_description">Verified ML<br> certificates</p>
</div>
</div>
<div class="profile_buttons">
<!-- Insert your CV -->
<a href="assets/pdf/CV - Othman SAMIH.pdf" download="" class="button">
Download CV <i class="ri-download-line"></i>
</a>
<div class="profile_buttons_small">
<!-- Insert your whatsapp -->
<a href="https://api.whatsapp.com/send/?phone=212682284369&text=Hey!" target="_blank" class="button button_small button_gray">
<i class="ri-whatsapp-line"></i>
</a>
<!-- Insert your email -->
<a href="mailto: [email protected]" target="_blank" class="button button_small button_gray">
<i class="ri-mail-line"></i>
</a>
</div>
</div>
</header>
<!-- Footer -->
<footer class="footer container">
<span class="footer_copy">
© Othman SAMIH. All rights reserved
</span>
</footer>
<!-- Scroll Reveal -->
<script src="assets/js/scrollreveal.min.js"></script>
<!-- Main JS -->
<script src="assets/js/main.js"></script>
</body>
</html>