-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (50 loc) · 2.11 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
<!DOCTYPE html>
<html lang="fr">
<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=Signika:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style_smartphone.css">
<link rel="stylesheet" href="assets/css/style.css">
<title>Kool Cake | Randoming Pop Illustrations</title>
</head>
<body>
<main>
<div id="group">
<img id="logo" src="assets/images/logo.svg" alt="amazing logo of Kool Cake">
<div id="bars">
<div id="orange_bar"></div>
<div id="purple_bar"></div>
<div id="blue_bar"></div>
</div>
<button onclick="on()">Générer_
_Une illustration</button>
</div>
<a href="#" onclick="whatIsIt()">KoolCake ? C'est quoi ?</a>
<!--The pop up for "what is it/qu'est-ce que c'est" section-->
<div id="whatisit" onclick="offWhatisit()">
<h1>Un projet d'illustrations [barrées] aléatoires</h1>
<p>Un générateur c'est bien. Mais un générateur d'illustrations, c'est mieux !
Les geeks le reconnaîtront à coup sûr...ça fourmille de références Pop C.
Un soupçon d'Adventure Time, P'ti Rex, Harry Potter, et autres clins d'yeux.
A quoi ça sert ? A rien, bien entendu.
[En fait, si : à coder.]
</p>
</div>
<div id="displayer">
<!--illustrations displaying-->
<img id="bg" src="./assets/images/bg/1.svg" name="r_img">
<img id="character-right" src="./assets/images/character-right/a.svg" name="r_img2">
<img id="character-left" src="./assets/images/character-left/y-1.svg" name="r_img3">
<button id="reload" onClick="window.location.reload();">Générer_
_Encore</button>
</div>
</div>
</div>
</main>
<!--Fabulous script go here-->
<script src="./assets/js/script.js"></script>
</body>
</html>