-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (81 loc) · 4.47 KB
/
index.html
File metadata and controls
90 lines (81 loc) · 4.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Libre+Barcode+39+Text&family=Montserrat:wght@300;500;700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Shrikhand&text=ohmyfood&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@300&text=Booki&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&text=GameOnSportSee&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@500&text=FishEye&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Anton&text=LesPetitsPlats&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&text=Kasa&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css.css" />
<script
src="https://kit.fontawesome.com/4be32a496d.js"
crossorigin="anonymous"
></script>
<title>Tom OpenClassrooms</title>
</head>
<body>
<div class="body-container">
<header class="main-header">
<h1 class="header-title">Tom ANDRE <em class="header-display">OpenClassrooms</em></h1>
<p class="header-desc">Mes projets OpenClassrooms pour la formation <mark>Développeur d'application JavaScript/React</mark>.</p>
</header>
<main class="main-container">
<h2 class="projects-main-title">Mes projets :</h2>
<section class="projects-container">
<a href="./projets/2-booki/index.html" class="project-link">
<article class="project-card" id="booki">
<h3 class="project-title" >Booki</h3>
<span class="project-label">Projet 2</span>
</article>
</a>
<a href="./projets/3-ohmyfood/index.html" class="project-link">
<article class="project-card" id="ohmyfood">
<h3 class="project-title" >ohmyfood</h3>
<span class="project-label">Projet 3</span>
</article>
</a>
<a href="./projets/4-gameon/index.html" class="project-link">
<article class="project-card" id="gameon">
<h3 class="project-title" >GameOn</h3>
<span class="project-label">Projet 4</span>
</article>
</a>
<a href="./projets/6-fisheye/index.html" class="project-link">
<article class="project-card" id="fisheye">
<h3 class="project-title" >FishEye</h3>
<span class="project-label">Projet 6</span>
</article>
</a>
<a href="./projets/7-lespetitsplats/index.html" class="project-link">
<article class="project-card" id="lespetitsplats">
<h3 class="project-title" >Les Petits Plats</h3>
<span class="project-label">Projet 7</span>
</article>
</a>
<a href="/projets/11-kasa/" class="project-link">
<article class="project-card" id="kasa">
<h3 class="project-title" >Kasa</h3>
<span class="project-label">Projet 11</span>
</article>
</a>
<a href="/projets/12-sportsee/" class="project-link">
<article class="project-card" id="sportsee">
<h3 class="project-title" >SportSee</h3>
<span class="project-label">Projet 12</span>
</article>
</a>
</section>
</main>
<footer class="main-footer">
<a class="footer-link" href="https://tox-dev.fr/">tox-dev.fr</a>
</footer>
</div>
</body>
</html>