-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS2.html
More file actions
executable file
·42 lines (37 loc) · 898 Bytes
/
Copy pathCSS2.html
File metadata and controls
executable file
·42 lines (37 loc) · 898 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
div {
background: grey;
padding: 10px 10px 10px 10px;
border: 16px solid brown;
border-radius: 15px 15px;
font-size: 15pt;
width: 350px;
height: 350px;
margin-left: 250px;
max-height: 200;
margin-top: 200px;
background-color: rgba(255,255,255,0.5);
text-align: justify;
text-justify: inter-word;
}
body{
background-color: #4CCDFF;
background-image: url(dbs.jpeg);
background-position: top center;
background-repeat: no-repeat;
background-size: 1300px 850px;
}
</style>
</head>
<body>
<div>
<h1>Dragon Ball Super</h1>
Dragon Ball Super é uma continuação ao anime e manga Dragon Ball Z, e os filmes Dragon Ball Z: A Batalha dos Deuses e Dragon Ball Z: O Renascimento de ‘F’.
A história e personagens serão desenvolvidos pelo autor original Akira Toriyama.
</div>
</body>
</html>