-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (69 loc) · 4.19 KB
/
Copy pathindex.html
File metadata and controls
69 lines (69 loc) · 4.19 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
<!DOCTYPE html>
<html lang='fr'>
<head>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<title>Niger IT Platform</title>
<style>
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Segoe UI',sans-serif; background:#0d1117; color:#e6edf3; }
nav { background:#161b22; padding:15px 30px; display:flex; justify-content:space-between; align-items:center; border-bottom:1px solid #30363d; }
nav h1 { color:#cc0000; font-size:1.4em; }
nav a { color:#e6edf3; text-decoration:none; margin-left:20px; opacity:0.8; }
nav a:hover { color:#cc0000; }
.hero { background:linear-gradient(135deg,#0d1117,#1a1a2e,#0d1117); padding:80px 30px; text-align:center; }
.hero h2 { font-size:2.5em; margin-bottom:15px; }
.hero h2 span { color:#cc0000; }
.hero p { font-size:1.15em; opacity:0.8; max-width:600px; margin:0 auto 30px; }
.btn { background:#cc0000; color:white; padding:13px 30px; border-radius:8px; text-decoration:none; font-weight:bold; margin:5px; display:inline-block; }
.btn-outline { background:transparent; border:2px solid #cc0000; color:#cc0000; }
.courses { padding:60px 30px; max-width:1100px; margin:0 auto; }
.courses h2 { text-align:center; margin-bottom:10px; font-size:2em; }
.courses p { text-align:center; opacity:0.7; margin-bottom:40px; }
.grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:20px; }
.course { background:#161b22; border:1px solid #30363d; border-radius:10px; padding:25px; transition:transform 0.2s; }
.course:hover { transform:translateY(-3px); border-color:#cc0000; }
.course .tag { background:#cc000022; color:#cc0000; padding:3px 10px; border-radius:20px; font-size:0.8em; display:inline-block; margin-bottom:12px; }
.course h3 { margin-bottom:10px; }
.course p { opacity:0.7; font-size:0.95em; line-height:1.6; }
.stats { background:#161b22; padding:50px 30px; display:flex; justify-content:center; gap:60px; flex-wrap:wrap; }
.stat { text-align:center; }
.stat h3 { font-size:2.5em; color:#cc0000; }
footer { text-align:center; padding:30px; opacity:0.5; border-top:1px solid #30363d; font-size:0.9em; }
</style>
</head>
<body>
<nav>
<h1>Niger IT Platform</h1>
<div>
<a href='#cours'>Cours</a>
<a href='#about'>A propos</a>
<a href='https://github.com/ibramoha2'>GitHub</a>
</div>
</nav>
<section class='hero'>
<h2>La cybersecurite<br><span>en francais</span> pour l Afrique</h2>
<p>Apprenez la cybersecurite avec des cours adaptes aux etudiants africains francophones.</p>
<a href='#cours' class='btn'>Commencer gratuitement</a>
<a href='https://github.com/ibramoha2/niger-it-platform' class='btn btn-outline'>Contribuer</a>
</section>
<section class='stats'>
<div class='stat'><h3>100%</h3><p>Gratuit</p></div>
<div class='stat'><h3>FR</h3><p>En francais</p></div>
<div class='stat'><h3>Africa</h3><p>Pour tous</p></div>
</section>
<section class='courses' id='cours'>
<h2>Nos Cours</h2>
<p>Du debutant a l expert — progressez a votre rythme</p>
<div class='grid'>
<div class='course'><span class='tag'>Debutant</span><h3>Introduction a la Cybersecurite</h3><p>Les fondamentaux : menaces, securite reseau, cryptographie.</p></div>
<div class='course'><span class='tag'>Intermediaire</span><h3>Linux pour la Securite</h3><p>Administration Linux, scripting bash, durcissement systeme.</p></div>
<div class='course'><span class='tag'>Intermediaire</span><h3>Pentest Ethique</h3><p>Nmap, Metasploit, Burp Suite — tests d intrusion legaux.</p></div>
<div class='course'><span class='tag'>Avance</span><h3>Blue Team & SOC</h3><p>SIEM, Wazuh, detection d incidents et reponse.</p></div>
<div class='course'><span class='tag'>Certification</span><h3>Prep ISC2 CC</h3><p>Preparation a la certification gratuite ISC2 CC.</p></div>
<div class='course'><span class='tag'>CTF</span><h3>Challenges & CTF</h3><p>Exercices pratiques TryHackMe, root-me, picoCTF.</p></div>
</div>
</section>
<footer><p>Niger IT Platform © 2024 — par ibramoha2 | Niamey, Niger — Pour la souverainete numerique africaine</p></footer>
</body>
</html>