-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (59 loc) · 1.49 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
<!DOCTYPE html>
<html>
<body>
<div>
<section class="listing-movies">
<figure>
<a href="./web/BigBuckBunny/BigBuckBunny.html">
<img src="./web/BigBuckBunny/Big_buck_bunny.jpg" alt="Big Buck Bunny" style="width:330px;height:380px;">
</a>
<figcaption>
<a href="./web/BigBuckBunny/BigBuckBunny.html"> Big Buck Bunny
</a>
</figcaption>
</figure>
<figure>
<a href="https://mega.nz/file/EshHXCaD#B3btZbeFuxvgILJGSxiSUYvvmEVk-EuqKunAJSYWftQ">
<img src="./web/TheWolfofWallStreet/The_Wolf_of_Wall_Street.png" alt="The Wolf of Wall Street" style="width:330px;height:380px;">
</a>
<figcaption>
<a href="https://mega.nz/file/EshHXCaD#B3btZbeFuxvgILJGSxiSUYvvmEVk-EuqKunAJSYWftQ"> The Wolf of Wall Street
</a>
</figcaption>
</figure>
<figure>
<a href="./web/BigBuckBunny/BigBuckBunny.html">
<img src="./web/BigBuckBunny/Big_buck_bunny.jpg" alt="Big Buck Bunny" style="width:330px;height:380px;">
</a>
<figcaption>
<a href="./web/BigBuckBunny/BigBuckBunny.html"> Big Buck Bunny
</a>
</figcaption>
</figure>
</section>
</div>
</body>
<style>
.listing-movies {
display: flex;
flex-wrap: wrap;
flex-direction: row;
}
figure{
padding: 4px;
margin: auto;
background: #f7f7f7;
}
figcaption {
text-align: center;
background: #f7f7f7;
color: #666;
font-weight: 600;
max-height: 56px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
}
</style>
</html>