-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patharticle.html
48 lines (41 loc) · 1.67 KB
/
article.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
<!doctype html>
<html>
<head>
<title>archX</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/label.css">
</head>
<body>
<header>
<!-- Toolbar -->
<nav>
<a href="index.html">Home</a>
<a href="news.html">News</a>
<a href="open-source.html">Open Source</a>
<a href="forum.html">Forum</a>
<a href="article.html">Articles</a>
<a href="write-up.html">Write-up</a>
<a href="ressources.html">Ressources</a>
<button id="dark-mode-toggle" class="btn" style="background: none; border: none; cursor: pointer; font-size: 1.5em;">
<span id="theme-icon">🌙</span>
</button>
</nav>
</header>
<section>
<h1 class="page-title">Articles</h1>
<p> What is the most difficult in writting an article is mostly to find the time to write it. And also to find the confidence to post it ! </p>
</section>
<!-- Articles -->
<div class=article>
<hr>
<h2><a href="article/congruence.html" target="_blank">🇫🇷 Arithmétique modulaire - Congruence</a></h2>
<p> Cours d'introduction aux congruences. Niveau license scientifique première année (L1)</p>
<hr>
<h2><a href="article/olympiade.html" target="_blank">🇫🇷 Olympiades nationales de mathématiques 2021 voie
technologique</a></h2>
<p>Ma correction d'un sujet d'olympiade organisé par le ministère de l'éducation.</p>
</div>
<script src="scripts/general_util.js"></script>
</body>
</html>