-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovies.html
69 lines (51 loc) · 1.65 KB
/
movies.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
66
67
68
69
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Ideias de Filmes</title>
<style>
body{
background: #e5e5e5;
color: #25282b;
font-family: 'Montserrat', sans-serif;
margin: 0;
}
a {
background: #0984e3;
color: white;
width: 150px;
height: 40px;
border-radius: 10px;
text-decoration: none;
font-size: 14px;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 8px 16px rgba(255, 0, 92, 0.16);
}
h2 {
text-align: center;
}
</style>
</head>
<body>
<h2>
Aqui estão algumas ideias de filmes que poderão lhe entreter um pouco neste momento.
</h2>
<div class="modification">
<a href="https://www.youtube.com/watch?v=eshxELCdSzM">Minha Mãe é Uma Peça 2
</a></br>
<a href="https://www.youtube.com/watch?v=EMoJzYFtk88">Minha Mãe é Uma Peça 3
</a></br>
<a href="https://www.youtube.com/watch?v=goYKADOr5Bk">O Código
</a></br>
<a href="https://www.youtube.com/watch?v=IUcasvELbLY">Deadpool 2
</a></br>
<a href="https://www.youtube.com/watch?v=UBcivqMXd2s">Jogada de Rei 2013
</a></br>
<a href="https://www.youtube.com/watch?v=NFR1SUz4yLw">Matrix
</a>
</div>
</body>
</html>