forked from kadea-academy-learners/exercice-kadea-online-v1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcours.html
162 lines (158 loc) · 5.84 KB
/
cours.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kadea online</title>
<link rel="stylesheet" href="dist/style/stylesheet.css">
</head>
<body>
<header>
<div class="container py-2 flex flex-justify-space-between flex-align-center">
<div>
<img src="/dist/images/KDA-logo.png" alt="logo de Kadea online">
</div>
<nav>
<ul class="flex gap">
<li>
<a href="./index.html">Accueil</a>
</li>
<li>
<a href="./cours.html" class="text-red">Nos cours</a>
</li>
</ul>
</nav>
</div>
</header>
<main>
<!--Start Commencez à coder section -->
<section class="bg-1">
<div class="container grid grid-t-c grid-align-items gap-1 py-5">
<div>
<img src="dist/images/Code-editor.png" alt="code editor">
</div>
<div class="flex flex-col gap text-dark">
<div>
<h2>
Améliorez vos competences
</h2>
</div>
<div>
<p>
Donnez-vous los connaissances, l'expérience et la confiance
dont vous avez besoin pour affronter n'importe quel problème.
</p>
</div>
</div>
</div>
</section>
<!--End Commencez à coder section -->
<!--Start apprentissage section -->
<section id="cours">
<div class="container py-5 grid gap-2 text-dark">
<div class="grid-justify-self-center">
<h2 class="text-center">
Démarrez votre apprentissage
</h2>
</div>
<div class="grid-justify-self-center">
<p class="text-center">Si vous étes arrivé jusqu'ici, vous devez étre au moins un peu curieux.<br>
Faites le premier pas vers vos objectifs.</p>
</div>
<!-- flex flex-justify-space-between -->
<!-- grid grid-t-c-minmax gap grid-justify-content-space -->
<div class="grid grid-t-c-minmax grid-align-items gap-3 gap-r text-center">
<article class="b-none">
<h3>
HTML et HTML5 de base
</h3>
</article>
<article class="b-none">
<h3>
Les bases du CSS
</h3>
</article>
<article class="b-none">
<h3>
conception visuelle appliquée
</h3>
</article>
<article class="b-none">
<h3>
HTML et HTML5 de base
</h3>
</article>
<article class="b-none">
<h3>
Les bases du CSS
</h3>
</article>
<article class="b-none">
<h3>
conception visuelle appliquée
</h3>
</article>
<article class="b-none">
<h3>
HTML et HTML5 de base
</h3>
</article>
<article class="b-none">
<h3>
Les bases du CSS
</h3>
</article>
<article class="b-none">
<h3>
conception visuelle appliquée
</h3>
</article>
</div>
<div>
<p>
<a href="#" class="text-red"><- Précédent </a>
<a href="#" class="text-red">Suivant -></a>
</p>
</div>
</div>
</section>
<!--End apprentissage section -->
</main>
<footer>
<div class="container py-4 grid grid-justify-content-center grid-justify-items gap-1">
<div>
<img src="/dist/images/KDA-logo.png" alt="logo de Kadea online">
</div>
<div>
<p class="text-center text-dark fw-600">
<span class="fw-bold">Texaf Digital Campus</span> <br>
Concession COTEX N° 63 Avenue Colonel Mondjiba <br>
Commune de Ngaliema - Kinshasa
</p>
</div>
<div class="flex gap-1">
<div>
<a href="#">
<img src="dist/images/facebook.png" alt="logo facebook">
</a>
</div>
<div>
<a href="#">
<img src="dist/images/linkdin.png" alt="logo linkdin">
</a>
</div>
<div>
<a href="#">
<img src="dist/images/x.png" alt="logo x">
</a>
</div>
<div>
<a href="#">
<img src="dist/images/instagram.png" alt="logo instagram">
</a>
</div>
</div>
</div>
</footer>
</body>
</html>