-
Notifications
You must be signed in to change notification settings - Fork 0
/
task3.html
31 lines (24 loc) · 932 Bytes
/
task3.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
<!DOCTYPE html>
<html>
<head>
<!-- Example iFrame communication using window.postMessage for safe cross domain communication with iFrames -->
<meta charset="utf-8">
<title>Practise task</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="wrapper.css">
<script src="wrapper.js"></script>
</head>
<body>
<div class="row-container">
<div class="first-row">
<p class="small"><a href="index.html">home</a></p>
<h1 id="title"></h1>
<!-- Put a progress bar here -->
<p id="instructions"></p>
<p id="hint"></p>
<p><a href="#" id="showMe">Show me where</a></p>
</div>
<iframe src="" id="contentFrame" class="second-row"></iframe>
</div>
</body>
</html>