-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (70 loc) · 1.83 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Maxime - Site Perso</title>
</head>
<body>
<table cellspacing="20">
<tr>
<td><img src="images/avatar.png" alt="représentation de moi en 3D avec un style cartoon"/></td>
<td>
<h1>Maxime Chanal</h1>
<p>
<em> Apprenti développeur web et <strong> passionné de tech </strong></em>
</p>
<p>
Je suis en train d'apprendre le développement web, et ceci est le début
d'une grande aventure !
</p>
</td>
</tr>
</table>
<hr />
<h3>Expériences profesionnelles</h3>
<table cellspacing="10">
<thead>
<th>Période</th>
<th>Entreprise</th>
<th>Poste occupé</th>
</thead>
<tbody>
<tr>
<td>2018 - Maintenant</td>
<td>Darty Saint-Flour</td>
<td>Vendeur</td>
</tr>
<tr>
<td>2015 - 2018</td>
<td>Constellium Issoire</td>
<td>Opérateur de production / Responsable machine</td>
</tr>
<tr>
<td>2013 - 2015</td>
<td>Constellium Issoire</td>
<td>Apprenti opérateur de production</td>
</tr>
</tbody>
</table>
<hr>
<h3>Compétences</h3>
<table cellspacing="10">
<tr>
<td>Esprit d'équipe</td>
<td>⭐️⭐️⭐️⭐️⭐️</td>
</tr>
<tr>
<td>Assiduité</td>
<td>⭐️⭐️⭐️⭐️</td>
</tr>
<tr>
<td>Maîtrise de l'anglais</td>
<td>⭐️⭐️⭐️</td>
</tr>
</table>
<hr>
<a href="hobbies.html">Mes hobbies</a>
<a href="contact.html">Contactez moi</a>
</body>
</html>