-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (80 loc) · 3.23 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Mon portfolio personnel</title>
<link rel="stylesheet" href="Index.css">
</head>
<body>
<div id="conteneur">
<header>
<nav>
<ul>
<li><a href="#maphoto">About</a></li>
<li><a href="#mes_projets">Works</a></li>
<li><a href="#Contact">Contacts</a></li>
</ul>
</nav>
</header>
<div id="maphoto">
<section id="photo">
<div>
<img src="Anselme3.jpg" alt="Anselme's image">
</div>
<h2>Hey! I am Anselme ADOUKONOU</h2>
<P>a web developer</P>
</section>
</div>
<div id="mes_projets">
<h1>These are some of my mini-projects</h1>
<section class="projet">
<div class="image_projet">
<a href="PageLanding/Index.html"><img src="Pagelanding1.png" alt="Pagelanding1"></a>
<div>
<h3>Landing page</h3>
</div>
</div>
<div class="image_projet">
<a href="Maquette No 1/Index.html"><img src="Maquette1.png" alt="Maquette1"></a>
<div>
<h3>Maquette (Restaurant)</h3>
</div>
</div>
</section>
<section class="projet">
<div class="image_projet">
<a href="Document technique/Document.html"><img src="Document1.png" alt="Document1"></a>
<div>
<h3>Technical documents</h3>
</div>
</div>
<div class="image_projet">
<a href="formulaire/Formulaire1.html"><img src="Formulaire1.png" alt="Formulaire1"></a>
<div>
<h3>Survey form</h3>
</div>
</div>
</section>
</div>
<div id="Contact">
<div id="contact1">
<h4>Let's work together...</h4>
<p>How do you take your coffee?</p>
</div>
<div id="Contact_list">
<ul id="CL" >
<li><a href="https://www.facebook.com/Anselmeaxel.adoukonou/" target="blank">Facebook</a></li>
<li><a href="https://te.me/@anselme03">Telegram</a></li>
<li><a href="mailto:anselmeadk03@gmail.com">Send a mail</a></li>
<li><a href="tel:+22964737017">Call me</a></li>
<li><a href="https://wa.me/22964737017">Wathsapp</a></li>
</ul>
</div>
</div>
<footer>
<p>Notice: if you want to contact me via email, you must complete email address in adding ".com". I remove it to prevent robot program to retrieve my email address and sell it to companies who need address contact to send their adverts</p>
<p id="fin">© build by Anselmeadk for freecodecamp project <p></p>
</footer>
</div>
</body>
</html>