"HelianeMatos - O Pequeno Príncipe"
Bootstrap 4.1.1 Snippet by psd11m

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Aprendendo DIV</title>
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap" rel="stylesheet">
<style>
h1{
font-size:60px;
font-family: 'Dancing Script', cursive;
}
h3{
font-family:Arial, Helvetica, sans-serif;
font-size:30px;
}
</style>
</head>
<body >
<div id="livro">
<div id="autor">
<h2 style="color:lightblue;">Antoine de Saint-Exupéry</h2>
</div>
<div id="titulo">
<h1 style="color:red;">O pequeno príncipe</h1>
</div>
<div id="figuras">
<div id="aquarelas">
<h5 style="color:lightblue;">Com aquarelas do autor</h5>
<div class="rodape">
<h3 style="color:orange;">global</h3>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
body{
background: lightblue;
}
#livro{
margin:0px auto;
height:700px;
width:550px;
background:darkblue radial-gradient(rgb(84, 84, 247), darkblue);
}
#autor{
padding-top:20px;
text-align:center;
}
#titulo{
text-align:center;
height:30px;
}
#figuras{
height:601px;
background-image:url("http://heliane.somee.com/prince.png");
background-repeat:no-repeat;
background-position:bottom;
}
#aquarelas{
text-align:right;
width:55%;
padding-top:35%;
}
.rodape{
width:50%;
padding-top:90%;
text-align:center;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: