-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 978 Bytes
/
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
<html>
<head>
<title>Example website with prototype controls</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<div class="flex-container">
<iframe
id="embed-frame"
src="https://embed.figma.com/proto/nrPSsILSYjesyc5UHjYYa4/Embed-Kit-2.0-examples?node-id=5-3&embed-host=embed-example-site&client-id=Qh4pDELgOVadrxPTac0tLa"
allowfullscreen
></iframe>
<div id="panel">
<div id="controls">
<div class="panel-header">Prototype controls:</div>
<div id="buttons">
<button id="prev" disabled>←</button>
<button id="restart" disabled>Restart</button>
<button id="next" disabled>→</button>
</div>
</div>
<div id="event-viewer">
<div class="panel-header">Events:</div>
<div id="events"></div>
</div>
</div>
</div>
</body>
</html>