-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcours.html
More file actions
56 lines (49 loc) · 1.98 KB
/
cours.html
File metadata and controls
56 lines (49 loc) · 1.98 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Letecode/Cours</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="container_flex header">
<figure class="logo container_flex">
<img src="media/logoletecode.png" alt="le logo">
<figcaption class="nom">letecode</figcaption>
</figure>
<nav class="container_flex">
<div><button class="btn-nav btn-on ">:::</button></div>
<div><button class="btn-nav btn-off">|||</button></div>
<ul class="navigation container_flex">
<li><a href="index.html">Accueil</a></li>
<li><a href="contact.html">Contacts</a></li>
<li><a href="communaute.html">Communauté</a></li>
<li><a href="cours.html">Cours</a></li>
</ul>
</nav>
</header>
<main>
<h1>Les cours</h1>
<section class="cours-list container_flex">
</section>
<section class="container_flex bg-gray">
<article class="text box-sec">
<h2>Abonnez-vous à la boîte aux lettres</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quidem esse vel inventore eveniet dicta
repellendus quam deleniti tenetur magnam, unde neque fuga voluptates sapiente doloribus delectus eos
nulla corrupti rem. animi vero!</p>
</article>
<form class="formulaire box-one">
<input type="email" placeholder="Envoyer un e-mail" class="textbox">
<input type="submit" value="s'Abonnez-vous" class="submit button">
</form>
</section>
</main>
<footer>
<p>développé par Letecode@2023</p>
</footer>
</body>
<script src="js/scripts.js"></script>
</html>