-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (36 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>IPSSI AW 22.4 - Révision Fondamentaux JS </title>
<link rel="stylesheet" href="./assets/normalize.css">
<style>
iframe {
border: none;
width: 100%;
overflow: hidden;
background: gainsboro;
}
</style>
</head>
<body>
<main aria-labelledby="header">
<header>
<h1 id="header">
<p><span>Révision Fondamentaux Javascript</span></p>
<p><span>IPSSI AW 22.4</span></p>
</h1>
</header>
<section>
<iframe src="./exo-1/" loading="lazy" onload="this.style.height = this.contentWindow.document.documentElement.scrollHeight + 'px';"></iframe>
<iframe src="./exo-2/" loading="lazy" onload="this.style.height = this.contentWindow.document.documentElement.scrollHeight + 'px';"></iframe>
<iframe src="./exo-3/" loading="lazy" onload="this.style.height = this.contentWindow.document.documentElement.scrollHeight + 300 + 'px';"></iframe>
<iframe src="./exo-4/" loading="lazy" onload="this.style.height = this.contentWindow.document.documentElement.scrollHeight + 150 + 'px';"></iframe>
<iframe src="./exo-5/" loading="lazy" onload="this.style.height = this.contentWindow.document.documentElement.scrollHeight + 15 + 'px';"></iframe>
</section>
</main>
</body>
</html>