-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (46 loc) · 1.1 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
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Videoly Widget Api DEMO</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
}
.product {
display: flex;
justify-content: space-between;
align-items: flex-start;
width: 700px;
margin-top: 100px;
padding: 10px;
border: 5px solid #94BFBE;
}
.product-videos {
width: 100%;
height: 120px;
padding: 5px;
}
</style>
</head>
<body>
<div class="product">
<div>
<img src="./product-photo.png" width="300" height="450" />
</div>
<div>
<h1 class="title">Popular Phone Name X1</h1>
<div class="product-videos">
Videos:
</div>
Product id: <span id="videoly-product-id">123123</span>
</div>
</div>
<script src="./videoly-callback-example.js"></script>
<script src="https://api.videoly.co/1/quchbox/0/99/quch.js"></script>
</body>
</html>