-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 1.5 KB
/
index.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
<!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">
<h3>Bienvenue sur le forum UQO!</h3>
</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>