-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
121 lines (93 loc) · 3.51 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<title title="Bienvenue chez Malnux"> Malnux Starck / Un Informaticien Accro </title>
<meta charset="UTF-8"/>
<meta name="author" content="Malnux"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0,user-scale=yes"/>
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="shortcut icon" href="images/boy1.ico"/>
<link rel="icon" type="image/png" href="images/boy12.png"/>
</head>
<body>
<div id="blockpage">
<?php
include("header.php");
?>
<div id="contenu">
<div id="message">
<h2> Presentation </h2>
<p>
Bonjour ou bonsoir, Je m'appelle <strong>Abdoul Malik</strong> plus connu sous le nom de <strong>Malnux Starck</strong> sur le net.
Je suis <strong>développeur Full Stack</strong>, et <strong> Se débrouille en Design</strong>.
Jeune Informaticien passionné des nouvelles technologies d'information et du Web.
je parcours les forums du Web pour aider les personnes ayant besoin d'aide.
Je cherche aussi des nouvelles méthodes et astuces afin de perfectionner ma technique et façonné mon apprentissage.
</p>
</div>
<div id="presentation">
<div id="p_image">
</div>
<h1> Abdoul Malik </h1>
<p>
Je suis curieux (passionné) de toutes les technologies en rapport avec l'informatique.
</p>
</div>
<div id="contact">
<h2> M'envoyé un mail </h2>
<form method="POST" action="postmessage.php">
<p>
<input type="text" name="prenom" placeholder="Prenom" maxlength="20" required/>
</p>
<p>
<input type="email" name="email" placeholder="Votre Email" required/>
</p>
<p>
<textarea name="message" placeholder="Le message" required></textarea>
<p>
<p>
<input type="submit" Value="Envoyer">
</p>
</form>
</div>
<div id="systemedexploitation">
<h2> Mes Os </h2>
<nav>
<ul>
<li>Windows 7</li>
<li>Ubuntu</li>
<li>Mac Os X</li>
</ul>
</nav>
</div>
<div id="date">
<div id="datei">
<?php include('date.php'); ?>
<h2> <?php echo $jour_lettre; ?> </h2>
<p>
<?php echo $jour_chiffre; ?>
</p>
<h3> <?php echo $mois_lettre; ?> </h3>
</div>
</div>
<div id="mesuivre">
<h2> Me suivre </h2>
<ul id="social">
<li>
<a href="https://www.facebook.com/abdoulmalikhamidou"><span id="facebook"></span>Facebook</a>
</li>
<li>
<a href="https://twitter.com/AbdoulMalikH"><span id="twitter"></span>Twitter</a>
</li>
<li>
<a href="https://github.com/malnuxstarck"><span id="github"></span>Github</a>
</li>
</ul>
</div>
</div>
<?php
include("footer.php");
?>
</div>
</body>
</html>