-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1.03 KB
/
index.html
File metadata and controls
27 lines (27 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<title>AB testing</title>
</head>
<body>
<div class="wrapper">
<button class="test-color" id="test-color">
Testing color
</button><br/>
<button id="test-display">
Testing display
</button>
<h1 id="test-text">Default text</h1>
<div class="test-image-wrapper">
<img class="test-image" id="test-image">
</div>
<h1 id="test-text-color">Test text color</h1>
<iframe id="test-iframe" width="560" height="315" src="https://www.youtube.com/embed/a3ICNMQW7Ok" frameborder="0" allowfullscreen></iframe><br>
<!-- <video preload="auto" autoplay="true" loop="loop" muted="muted">
<source id="test-mp4" src="video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video> -->
</div>
<script src="./bundle.js" type="text/javascript"></script>
</body>
</html>