-
Notifications
You must be signed in to change notification settings - Fork 0
/
fundo001.html
49 lines (37 loc) · 1002 Bytes
/
fundo001.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
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Teste de Imagens de Fundo</title>
<style>
body {
background-image: url(./imagens/wallpaper001.jpg);
}
.quadrado {
border-radius: 10px;
border: 2px solid black;
width: 300px;
height: 300px;
background-color: lightgrey;
}
#q1 {
background-color: skyblue;
}
#q2 {
background-image: linear-gradient(to bottom, rgba(255, 251, 0, 0.952), rgba(255, 51, 0, 0.945));
}
#q3 {
background-image: url('./imagens/pattern001.png');
}
</style>
</head>
<body>
<div class="quadrado" id="q1">
</div>
<div class="quadrado" id="q2">
</div>
<div class="quadrado" id="q3">
</div>
</body>
</html>