-
Notifications
You must be signed in to change notification settings - Fork 0
/
curso.html
114 lines (110 loc) · 4.9 KB
/
curso.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,700&display=swap"
rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./css/curso_contato.css">
<title>Curso Dindin</title>
</head>
<body>
<header>
<div class="container">
<div>
<a href="./index.html"
><img src="./imagens/logo-header.png" alt="logo" />
</a>
</div>
<nav>
<ul>
<li><a href="./cursos.html">CURSOS</a></li>
<li><a href="./blog.html">BLOG</a></li>
<li><a href="./contato.html">CONTATO</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="sessao_0">
<div class="titulo1">
<h1>Investimento <br>para iniciantes</h1>
<h2>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium <br>
doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore <br>
veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim <br>
ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia <br>
consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. </h2>
</div>
<div>
<img src="./imagens/ilustra-poupando.png" alt="banner">
</div>
</section>
<section class="sessao_1">
<div class="container-2">
<div>
<iframe src="https://www.youtube.com/embed/IF5qa1ORZcw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div>
<h2>Aula 01</h2>
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur
magni dolores eos qui ratione voluptatem sequi nesciunt.
<br><br>
Ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni
dolores eos qui ratione voluptatem sequi nesciunt.
</p>
</div>
<div>
<iframe src="https://www.youtube.com/embed/IF5qa1ORZcw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div>
<h2>Aula 02</h2>
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur
magni dolores eos qui ratione voluptatem sequi nesciunt.
<br><br>
Ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni
dolores eos qui ratione voluptatem sequi nesciunt.
</p>
</div>
<div>
<iframe src="https://www.youtube.com/embed/IF5qa1ORZcw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div>
<h2>Aula 03</h2>
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur
magni dolores eos qui ratione voluptatem sequi nesciunt.
<br><br>
Ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni
dolores eos qui ratione voluptatem sequi nesciunt.
</p>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<div>
<a href="./index.html">
<img src="./imagens/logo-footer.png" alt="logo"
/></a>
</div>
<div>
<ul>
<li><a href="./cursos.html">cursos</a></li>
<li><a href="./blog.html">blog</a></li>
<li><a href="./contato.html">contato</a></li>
</ul>
</div>
<div>
<ul>
<li><button><a href="#">quero ser prof</a></button></li>
<li><button><a href="#">aqui tem outro link</a></button></li>
</ul>
</div>
</div>
</footer>
</body>
</html>