-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (76 loc) · 3.08 KB
/
index.html
File metadata and controls
91 lines (76 loc) · 3.08 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
<!DOCTYPE html>
<html lang="fr">
<!-- Meta-données -->
<head>
<meta charset="UTF-8">
<title>Accueil - PythonMasterClass</title>
<link rel="icon" type="image/png" sizes="32x32" href="./images/icons/icon.png">
<link href="css/styles.css" rel="stylesheet" type="text/css">
<link href="css/accueil.css" rel="stylesheet" type="text/css">
<!-- Police du h1 -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Baloo+2:wght@700&display=swap" rel="stylesheet">
</head>
<!-- Corps de la page -->
<body>
<!-- Haut de page -->
<header>
<!-- Logo -->
<a href="breviaire.html"><img src="images/logos/logo.png" alt="PythonMasterClass"></a>
<!-- Barre de navigation -->
<nav>
<a href="index.html" id="selected">Accueil</a>
<a href="introduction.html">Cours</a>
<a href="breviaire.html">Bréviaire</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<!-- Contenue de la page -->
<main>
<section id="section-accueil">
<h1>Commencez à apprivoiser la bête</h1>
<div>
<img src="images/acceuil/snake.png" alt="photo d'un python" id="imgpython">
</div>
<aside id="aside-accueil">
<div>
<img src="images/icons/casteduc.png" alt="icone de cast education" class="icone-accueil">
<p class="texte-accueil">
<br>Apprenez depuis votre canapé
</p>
</div>
<div>
<img src="images/icons/validation.png" alt="icone de validation" class="icone-accueil">
<p class="texte-accueil">
Variables, conditions, boucles,
fonctions, dictionnaires, protips
</p>
</div>
<div>
<img src="images/icons/unlock.png" alt="icone de cadenas" class="icone-accueil">
<p class="texte-accueil">
Débloquez un potentiel sans limite
</p>
</div>
<div>
<a href="introduction.html" target="_blank" id="boutoncours">Voir le cours</a>
</div>
</aside>
</section>
</main>
<!-- Pied de page -->
<footer>
<!-- Copyright -->
<p><img src="images/icons/bugs.png" alt="Bug"> All rights reserved - PythonMasterClass 2020 <img src="images/icons/bugs.png" alt="Bug"></p>
<!-- Réseaux -->
<address>
<p>Réseaux :</p>
<a href="https://discord.com" target="_blank"><img id=discord src="images/logos/discord.png" alt="Discord"></a>
<a href="https://fr.linkedin.com" target="_blank"><img src="images/logos/linkedin.png" alt="Linkedin"></a>
<a href="https://www.instagram.com" target="_blank"><img src="images/logos/instagram.png" alt="Instagram"></a>
<a href="https://www.youtube.com" id=youtube target="_blank"><img src="images/logos/youtube.png" alt="Youtube"></a>
<a href="https://twitter.com" target="_blank"><img src="images/logos/twitter.png" alt="Twitter"></a>
</address>
</footer>
</body>
</html>