-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcours.html
More file actions
93 lines (88 loc) · 3.33 KB
/
cours.html
File metadata and controls
93 lines (88 loc) · 3.33 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
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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<title>Cours</title>
</head>
<body>
<nav class="navigation">
<div class="container">
<a href="#">
<img src="images/logo-trans_copy.png" alt="Letecode Logo">
<span>Letecode</span>
</a>
<ul class="menu">
<li><a href="index.html" class="menuitems">Acceuil</a></li>
<li><a href="communaute.html" class="menuitems">Communauté</a></li>
<li><a href="cours.html" class="menuitems active">Cours</a></li>
<li><a href="contacts.html" class="menuitems">Contacts</a></li>
</ul>
</div>
</nav>
<div class="container">
<h2 class="flex-title">Les cours</h2>
<div class="flex-box">
<div class="flex-items">
<img src="images/git-and-github.png" alt="git">
<h3>Git et Github</h3>
<small>5 heures</small>
</div>
<div class="flex-items">
<img src="images/html5.jpg" alt="html">
<h3>HTML5</h3>
<small>5 heures</small>
</div>
<div class="flex-items">
<img src="images/css3.png" alt="css3">
<h3>CSS3</h3>
<small>5 heures</small>
</div>
<div class="flex-items">
<img src="images/flex box.png" alt="flex-box">
<h3>Flexbox</h3>
<small>5 heures</small>
</div>
<div class="flex-items">
<img src="images/responsive.png" alt="responsive css logo">
<h3>Responsive</h3>
<small>5 heures</small>
</div>
<div class="flex-items">
<img src="images/annimation.jpg" alt="annimation css logo">
<h3>Animation</h3>
<small>5 heures</small>
</div>
</div>
</div>
<div class="section news-letter">
<div class="container">
<div class="subscribe1">
<h2>Abonnez vous à la boite<br> aux lettres</h2>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Corporis harum labore ea temporibus, modi voluptatibus
doloribus qui odit assumenda. Officiis, architecto! Vitae
dignissimos dicta magni, at quas amet itaque quos!
</p>
</div>
<div class="subscribe2">
<form action="#">
<input type="email" placeholder="Adresse email..">
<input type="submit" value="S'abonner">
</form>
</div>
</div>
</div>
<footer>
<div class="container">
<p>Devellopé par Letecode ©2023</p>
</div>
</footer
</body>
</html>