-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesafioCard.html
More file actions
64 lines (57 loc) · 1.65 KB
/
Copy pathdesafioCard.html
File metadata and controls
64 lines (57 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Desafio Card</title>
<style>
.curso{
display: inline-block;
box-shadow: 0px 4px 20px 0px black;
border: solid 0.1px blanchedalmond;
margin: 30px;
padding: 30px;
}
.curso-info{
font-family: Verdana, Geneva, Tahoma, sans-serif;
padding: 10px;
}
img{
width: 100%;
max-height: 50%;
}
h4{
margin: 0%;
}
</style>
</head>
<body>
<h1>Card</h1>
<h2>Objetivo</h2>
<img src="http://files.cod3r.com.br/curso-web/card.png" height="340" alt="Objetivo">
<h2>Resultado</h2>
<div>
<div class="curso">
<img src="http://files.cod3r.com.br/curso-web/curso1.jpg" />
<div class="curso-info">
<h4>Docker: Ferramenta essencial para Desenvolvedores</h4>
<p>Prof. Fulano</p>
</div>
<div class="curso-preco">
<span class="preco-de">R$80,00</span>
<span class="preco-por">R$50,00</span>
</div>
</div>
<div class="curso">
<img src="http://files.cod3r.com.br/curso-web/curso2.jpg" />
<div class="curso-info">
<h4>Web Moderno com Javascript + Projetos</h4>
<p>Prof. Sicrano Filho</p>
</div>
<div class="curso-preco">
<span class="preco-de">R$80,00</span>
<span class="preco-por">R$50,00</span>
</div>
</div>
</div>
</body>
</html>