-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinformatique.html
76 lines (75 loc) · 2.32 KB
/
informatique.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Thomas Bernard-St-Hilaire">
<title>Forum UQO</title>
<link rel="stylesheet" href="./css/styles.css" type="text/css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto"
/>
</head>
<body>
<header>
<img
src="img/uqo_logo.png"
alt="Logo
de UQO Forum absent"
id="logo"
/>
Forum
<section title="menu">
<nav id="topbar">
<a href="index.html" class="active">Accueil</a>
<a href="signin.html">Se connecter</a>
<a href="signup.html">S'inscrire</a>
<button>Se déconnecter</button>
</nav>
</section>
</header>
<main>
<aside>
<h2><u>Catégories</u></h2>
<nav style="flex-direction: column; width: auto">
<a href="informatique.html">Informatique</a>
<a href="math.html">Mathématiques</a>
<a href="anglais.html">Anglais</a>
</nav>
</aside>
<section>
<div style="text-align: center">
<div class="card">
<article class="thread">
<div class="container">
<h4><b>Mon premier fil de discussion</b></h4>
<div style="text-align: start">
<b>Auteur(e) : </b><i>JoeInfo</i>
<img
src="./img/pfp1.webp"
class="pfp"
alt="Photo de profil #1"
/>
<br />
<b>Domaine d'études : </b><i>Baccalauréat en Informatique</i
><br />
<b>Date de création : </b><i>8 février 2023 16:38:47</i>
</div>
<p>Bonjour à tous!</p>
<div style="text-align: start">
<b>Nombre de commentaires : </b><i>0</i>
</div>
</div>
</article>
</div>
</div>
</section>
</main>
<footer>
<b>Forum UQO </b> <a href="mailto: [email protected]">Contact </a>
<i>Tout droits réservés 2023</i>
</footer>
</body>
</html>