-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject01.html
More file actions
70 lines (70 loc) · 1.97 KB
/
Copy pathProject01.html
File metadata and controls
70 lines (70 loc) · 1.97 KB
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
69
70
<!DOCTYPE html>
<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>Projeto 01</title>
</head>
<body>
<section class="container flex">
<div class="item">Qual dessas marcas de carro você gosta mais?</div>
<div class="item">Which of these car brand do you like the most?</div>
</section>
<style>
.container-flex {
display: block;
flex-wrap: wrap;
max-width: 400px;
margin: 0 auto;
text-align: center;
}
.flex-wrap {
flex-wrap: wrap;
}
.flex {
display: flex;
}
.container {
text-align: center;
font-size: 20px;
background-color: #ffffff;
max-width: 380px;
margin: 0 auto;
border: 3px solid #000000;
}
body {
background-image: url(https://fotos.jornaldocarro.estadao.com.br/primeira-classe/files/2016/07/marcas-reuters.jpg);
}
button {
background-color: #ffffff;
border: solid 2px #ff0000;
margin: auto;
}
button:hover {
background-color: darkgray;
}
</style>
<section class="container-flex flex-wrap">
<button>Mazda</button>
<button>Mercedez Benz</button>
<button>Ferrari</button>
<button>Alfa Romeo</button>
<button>Rolls Royce</button>
<button>Pagani</button>
<button>Lamborghini</button>
<button>Mclaren</button>
<button>Chevrolet</button>
<button>Dodge</button>
<button>Aston Martin</button>
<button>BMW</button>
<button>Porsche</button>
<button>Lexus</button>
<button>Lotus</button>
<button>Maserati</button>
<button>Bugatti</button>
<button>Mitsubishi</button>
</section>
<script></script>
</body>
</html>