-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathactivite.html
More file actions
59 lines (54 loc) · 1.84 KB
/
activite.html
File metadata and controls
59 lines (54 loc) · 1.84 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Formation Web </title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="navbar" >
<ul>
<li><a href="https://github.com/tlujean/web_formation">Github</a></li> <!-- Inserer le lien githubC -->
<li><a href="activite.html">Activite</a></li>
<li><a href="">A propos</a></li> <!-- Inserer le lien du cours sur MEC -->
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<header>
<h1>Apprendre les bases du developement web</h1>
<nav>
<ul>
<li><a href="./participate.html">Commencer l'activité</a></li>
</ul>
</nav>
</header>
<main>
<h2>Programme</h2>
<h3>Chapitre 1 : Prendre en main Github </h3>
<div class="details">
<li><p>Partie 1 : Github </p></li>
<li><p>Partie 2 : Github Desktop</p></li>
<li><p>Partie 3 : Premier Commit </p></li>
<button class="btn" type="submit">Exercice</button>
</div>
<h3>Chapitre 1 : Le langages HTML </h3>
<div class="details">
<li><p>Distinguer ce qui relève du contenu d’une page et de son style de présentation.</p> </li>
<li><p>Étudier et modifier une page HTML simple.</p></li>
<button class="btn" type="submit">Exercice</button>
</div>
<h3>Chapitre 2 : Le langages CSS </h3>
<div class="details">
<li><p> Donner du style à une page HTML simple.</p></li>
<button class="btn" type="submit">Exercice</button>
</div>
</main>
<footer>
<h2>Information</h2>
<ul>
<li><a href="https://github.com/tlujean/web_formation"> Web_formation </a></li>
<li><a href="https://twitter.com/jeanneretLucile"> @jeanneretLucile </a></li>
</ul>
</footer>
</body>
</html>