-
Notifications
You must be signed in to change notification settings - Fork 0
/
scene2.html
51 lines (48 loc) · 1.65 KB
/
scene2.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
<html lang="fr">
<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">
<link rel="stylesheet" href="main.css">
<script src="scene2.js" defer></script>
<!-- importer fichier font local -->
<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=Acme&display=swap" rel="stylesheet">
<title>BRAINSTORMING</title>
</head>
<style>
.scene {
background-image: url(img/backgrounds/couloir.jpg);
}
</style>
<body>
<div class="scene">
<div class="perso perso1" >
<img src="img/jb/neutral.png" alt="">
</div>
<div class="perso perso2 opaque" style="right: 90px !important">
<img src="img/jules/neutral.png" alt="">
</div>
<div class="etiquette left">
<p>Jb</p>
</div>
<div class="bulle-container" onclick="">
<div class="bulle">
<p class="bulle-texte"></p>
</div>
<div class="triangle"></div>
</div>
<!-- bouton pour changer de page -->
</div>
<!-- <div class="suivant">
<a href="scene2.html">Suivant</a>
</div> -->
<a class="suivant left" href="scene3_shams.html">
Aller en parler à Shams
</a>
<a class="suivant right alice" href="scene3_alice.html">
Aller en parler à Alice
</a>
</body>
</html>