-
Notifications
You must be signed in to change notification settings - Fork 0
/
musica.php
64 lines (59 loc) · 1.08 KB
/
musica.php
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
<?php
$arq = fopen('musica.txt', 'r');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Músicas</title>
<style type="text/css">
@import url('https://fonts.googleapis.com/css?family=Indie+Flower|PT+Serif');
.texto{
text-align: left;
margin-left: 20px;
}
.texto h2{
color: red;
font-family: 'PT Serif', serif;
}
.texto p{
margin-left:40px;
color: green;
font-family: 'Indie Flower', cursive;
font-size: 30px;
}
.video{
width: auto;
padding: 30px;
border: 1px solid black;
border-radius: 10px;
margin: 0 auto;
margin-top: 20px;
}
body{
background: url(http://images.cgmagonline.com/2016/04/party-hard-workshop-review-4.jpg);
background-size: 100% 100%;
background-repeat: no-repeat;
}
#corpo{
margin: 0 auto;
text-align: center;
background: rgba(255,255,255,.6);
width: 70%;
border-radius: 40px;
margin-top: 200px;
padding: 40px;
}
</style>
</head>
<body>
<div id="corpo">
<?php
while (!feof($arq)) {
$linha = fgets($arq);
echo $linha;
}
?>
</div>
</body>
</html>