-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
148 lines (141 loc) · 5.31 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!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">
<link rel="stylesheet" href="https://aymen-ghemam.github.io/portfolio/assets/styles.css">
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico">
<title>Aymen GHEMAM</title>
</head>
<body>
<header>
<div class="wave">
<img class="svg" src="./assets/vector.svg" alt="logo">
</div>
<div class="content container">
<div class="round-image">
<img src="./assets/me.jpg" alt="me">
</div>
<div class="text">
<h1>Hi, I'm Aymen</h1>
<br/>
<br/>
<p>Aymen GHEMAM, full-stack Web/Mobile Developer .I'm a Master's 1 Software Engineering student at Houari Boumediene University of Sciences and Technology (USTHB).</p>
<br/>
<a href="https://drive.google.com/file/d/1hhyU8Z5MkVVzwb8TwnTcVfALa6y3MghS/view?usp=sharing" class="button" target="_blank">Download Resume</a>
</div>
</div>
</header>
<section>
<div class="container">
<h2>skills</h2>
<br/>
<div class="row">
<div class="card frontend">
<div class="head">
<h1 class="title left">Front end</h1>
</div>
<p>
HTML/CSS, React.js, React Native, ElectronJs, JavaFX.
</p>
</div>
<div class="card backend">
<div class="head">
<h1 class="title right">Back end</h1>
</div>
<p>
Node.js, Flask, MySQL, PostreSQL and MongoDB.
</p>
</div>
</div>
<div class="row">
<div class="card ui">
<div class="head">
<h1 class="title">UI/UX</h1>
</div>
<p>
Familiar with Photoshop and Figma tools for UX/UI concepts and wireframing.
</p>
</div>
<div class="card programming">
<div class="head">
<h1 class="title">Programming</h1>
</div>
<p>
Python, Java, C/C++, Javascript,
</p>
</div>
</div>
</div>
</section>
<section class="projects">
<div class="container">
<h2>Highlights</h2>
<br/>
<div class="row">
<div class="project">
<div class="project__img">
<a href="https://github.com/aymen-ghemam/MedUP"><img src="./assets/projets/projet1.png" alt=""></a>
</div>
<div class="project__body">
<h1>MedUP</h1>
<p>MedUP is a WEB/Mobile app for booking medical appointments with a healthcare profissional.</p>
<div class="info">
<p class="info__highlight">Type</p>
<p>WEB/Mobile (PWA)</p>
</div>
</div>
<div class="project__footer">
<p><span>2021</span></p>
</div>
</div>
<div class="project">
<div class="project__img">
<a href="#"><img src="./assets/projets/projet2.png" alt=""></a>
</div>
<div class="project__body">
<h3>*</h3>
<p>Team management and communication platform to help teams move work forward, Collaborate, manage projects and tasks.</p>
<div class="info">
<p class="info__highlight">Type</p>
<p>WEB</p>
</div>
</div>
<div class="project__footer">
<p><span>2021</span></p>
</div>
</div>
</div>
</div>
</section>
<br/>
<br/>
<footer>
<div>[email protected]</div>
<ul className='socials'>
<li>
<a href="https://web.facebook.com/aymen-ghemam">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/aymen.ghemam/">
<i class="fa fa-instagram"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/aymen-ghemam">
<i class="fa fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://github.com/aymen-ghemam">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
</footer>
<script src="https://kit.fontawesome.com/81e45f368a.js" crossorigin="anonymous"></script>
</body>
</html>