-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesafioCard.html
45 lines (40 loc) · 1.2 KB
/
desafioCard.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Desafio Card</title>
<style>
/* ... */
</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>