-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·82 lines (66 loc) · 2.55 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
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
<!doctype html>
<html class="no-js" lang="fr">
<head>
<meta charset="utf-8">
<title>The JS Clocks</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="spinner"></div>
<h1>The JS CLOCKS</h1>
</header>
<article class="intro">
Un projet développé à l’ERACOM, Lausanne<br>
Cours multimédia/web, Manuel Schmalstieg<br>
Automne 2017
</article>
<ul class="projets">
<li>
<a href="https://eracom-gr461.github.io/jsclocks-juliusboy/">
<div class="figure">
<h2>01</h2>
<img src="https://eracom-gr461.github.io/jsclocks-juliusboy/img.png" />
</div>
<p>01 - par Julien Nshimirimana</p>
</a>
</li>
<li>
<a href="https://eracom-gr461.github.io/jsclocks-GClaiire/">
<div class="figure">
<h2>02</h2>
<img src="https://eracom-gr461.github.io/jsclocks-GClaiire/verre.png" />
</div>
<p>02 - par Claire Graber</p>
</a>
</li>
<li>
<a href="https://eracom-gr461.github.io/time_jk/">
<div class="figure">
<h2>03</h2>
<img src="https://eracom-gr461.github.io/jsclocks-jeremie27/img/cube.png" />
</div>
<p>03 - par Jeremie Kursner.</p>
</a>
</li>
<li>
<a href="https://eracom-gr461.github.io/jsclocks-StephGr461/">
<div class="figure">
<h2>04</h2>
<img src="https://eracom-gr461.github.io/jsclocks-StephGr461/rond.png" />
</div>
<p>04 - par Stephanie Wilson.</p>
</a>
</li>
<!-- insérez vos projets ici -->
</ul>
<footer><a href="https://github.com/eracom-gr461?q=jsclocks">Voir tous les projets sur GitHub</a></footer>
<script>
// liens sortants dans nouvelle fenêtre
for (var links = document.links, i = 0, a; a = links[i]; i++) {
a.target = '_blank';
}
</script>
</body>
</html>