-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground-size.html
68 lines (67 loc) · 2.08 KB
/
background-size.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Background-size</title>
<style>
*{
margin: 0;
padding: 0;
}
body{
height: 100vh;
background-color: black;
background-image: url(./Imagens/wallpaper002.jpg);
color:black;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
main{
width: 400px;
margin: auto;
margin-top: 30px;
border: 1px solid black;
border-radius: 20px;
box-shadow: 2px 2px 3px black;
padding: 20px;
background-color: white;
}
h1{
margin-bottom: 20px;
text-align: center;
}
nav{
padding: 20px;
margin-bottom: 20px;
}
a{
margin: 20px;
font-family:'Courier New', Courier, monospace;
font-size: 1.3em;
color: white;
text-decoration: none;
}
a:hover{
color: red;
transition: 0.3s;
}
</style>
</head>
<body>
<nav>
<a href="#">Ínicio</a>
<a href="#">Palavaras</a>
<a href="#">Versiculos</a>
<a href="#">Testemunhos</a>
</nav>
<main>
<h1>Trabalhando com Background-size</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt voluptates blanditiis cum nobis. Atque impedit amet ipsum illum quos. Ipsum modi veniam incidunt sed numquam doloremque amet eum cupiditate dolorum.
</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum ex animi laboriosam, reiciendis molestias qui, ullam provident temporibus eligendi amet sequi ducimus culpa eveniet assumenda autem consectetur sed molestiae et?</p>
</main>
</body>
</html>