-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapropos.html
More file actions
57 lines (53 loc) · 1.73 KB
/
apropos.html
File metadata and controls
57 lines (53 loc) · 1.73 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width= , initial-scale=1.0">
<title>HTML5 document</title>
</head>
<body>
<header>
<h3>Drcmind</h3>
<nav>
<ul>
<li>
<a href="index.html">Acueil</a>
</li>
<li>
<a href="mailto:assogbayanick2003@gmail.com">Contact</a>
</li>
</ul>
</nav>
</header>
<main>
<section id="hero">
<h1>Bienvenue sur Drcmind</h1>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aliquid rerum ducimus sit non dignissimos provident deserunt. Qui eos quaerat facilis minus dolor, rerum quod inventore fuga praesentium itaque debitis accusamus.
</p>
<button>Apprendre Plus</button>
</section>
<section id="album">
<h2>album</h2>
<div >
<img src="assets/web-img.png" width="500px">
<img src="assets/web-img.png" width="500px">
<img src="assets/web-img.png" width="500px">
<img src="assets/web-img.png" width="500px">
</div>
</section>
<section id="Contact">
<h2>Contactez-nous</h2>
<form>
<input type="text" placeholder="Votre nom">
<input type="email" placeholder="Votre adresse">
<textarea placeholder="Votre messages"></textarea>
<button type="submit">Valider</button>
</form>
</section>
<footer>
<p>@drcmind Tout droit reservés</p>
</footer>
</main>
</body>
</html>