-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (64 loc) · 3.12 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
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inverted Corner Bento Grid</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<section class="section-gap">
<div class="container">
<div class="bento-grid">
<div class="bento-grid__item bento-grid__item--1">
<div class="card">
<figure class="card__shape">
<!-- <img src="https://source.unsplash.com/random/500x500/?building&1" alt="card" height="400" loading="lazy" class="card__shape__bg"> -->
<video data-yt2html5="https://www.youtube.com/watch?v=PCXtFRpGxCE" poster="https://source.unsplash.com/random/500x500/?building&1" autoplay playsinline muted loop height="400" class="card__shape__bg"></video>
</figure>
</div>
</div>
<div class="bento-grid__item bento-grid__item--2">
<div class="cover">
<div class="cover__before"></div>
<div class="cover__after"></div>
</div>
<div class="card">
<figure class="card__shape">
<img src="https://source.unsplash.com/random/500x500/?building&2" alt="card" height="400" loading="lazy" class="card__shape__bg">
</figure>
</div>
</div>
<div class="bento-grid__item bento-grid__item--3">
<div class="cover cover--1">
<div class="cover__before"></div>
<div class="cover__after"></div>
</div>
<div class="cover cover--2">
<div class="cover__before"></div>
<div class="cover__after"></div>
</div>
<div class="card">
<figure class="card__shape">
<img src="https://source.unsplash.com/random/500x500/?building&3" alt="card" height="400" loading="lazy" class="card__shape__bg">
</figure>
</div>
</div>
<div class="bento-grid__item bento-grid__item--4">
<div class="card">
<figure class="card__shape">
<img src="https://source.unsplash.com/random/500x500/?building&4" alt="card" height="400" loading="lazy" class="card__shape__bg">
</figure>
</div>
</div>
<div class="bento-grid__item bento-grid__item--5">
<a href="#!" class="btn">Know More</a>
</div>
</div>
</div>
</section>
<!-- Script For Youtube Video Player -->
<script src="https://cdn.jsdelivr.net/gh/thelevicole/youtube-to-html5-loader@4.0.1/dist/YouTubeToHtml5.js"></script>
<script>new YouTubeToHtml5();</script>
</body>
</html>