-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimpression.html
More file actions
52 lines (50 loc) · 1.1 KB
/
Copy pathimpression.html
File metadata and controls
52 lines (50 loc) · 1.1 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
body {
background-color:#EEEEEE;
text-align:center;
padding-top:20px;
font-size:20px;
}
#cadre {
border:solid 2px #000000;
width:60%;
background-color:#FFFFFF;
padding:10px;
margin: 20px auto;
height:100px;
line-height:100px;
}
#cache {
display:none;
font-size:40px;
}
@media print {
#cache {
display:block;
}
}
</style>
<script src="js/utils.js">
</script>
<script>
secret = "àéçufkdqnfdspar343QRF3RTapouedk";
document.addEventListener("DOMContentLoaded", function(event) {
document.getElementById("cache").innerHTML = getWord();
});
</script>
</head>
<body>
Faites comme si vous alliez imprimer cette page, un mot apparaîtra dans le cadre ci-dessous.<br>
<div id="cadre">
<div id="cache">
</div>
</div>
</body>
</html>