-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (61 loc) · 1.99 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
<html>
<head>
<title>Bastien PROMPSY</title>
<!-- common page style -->
<link type="text/css" rel="stylesheet" href="style.css" />
<!-- specific page style -->
<style type="text/css">
/* This is a css comment */
</style>
</head>
<body>
<div class="header">
<nav>
<ul>
<li><a href="#">Menu</a>
<ul>
<li><a href="index.html">Acceuil</a></li>
<li><a href=index.html>Mes experience</a></li>
<li><a href="cv.html">CV</a></li>
<li><a href="contacter_moi.html">Contactez-moi</a></li>
</ul>
</ul>
</nav>
</div>
<div class="main">
<div class="main-content">
<img src="Docs/Photo_identité_Bastien_Prompsy.jpg" alt="photo_identite" />
<p>
Bonjour, je m'appelle Bastien PROMPSY
</br>
j'ai 19 ans
</p>
</div>
</div>
<div class="footer">
<div class="link">
<p>
bastienprompsy@gmail.com<br>
06.61.94.54.79
</p>
<a href="https://www.linkedin.com/in/bastien-prompsy-46b9341aa/">
<img src="Docs/linkedin.jpg">
</a>
<a href="https://www.facebook.com/profile.php?id=100008491361131">
<img src="Docs/facebook.jpeg"/>
</a>
</div>
<div class="news">
<form>
<label for="name">Name</label>
<input id="name" type="text" />
<label for="email">adresse email</label>
<input id="email" type="text" />
<label for="newsletter">Get Newsletter?</label>
<input type="checkbox" id="newsletter">
<input type="submit" value="Click to Submit" />
</form>
</div>
</div>
</body>
</html>