-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.html
More file actions
63 lines (51 loc) · 2.17 KB
/
content.html
File metadata and controls
63 lines (51 loc) · 2.17 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
<!DOCTYPE html>
<html>
<head>
<title>Contatos para Comunicação</title>
<link rel="shortcut icon" href="comunicacao.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<header>
<p><a href="index.html">Home</a></p>
<h1>Cursos da Rocketseat</h1>
</header>
<section class="courses">
<div class="courses_content" id="starter">
<img src="https://rocketseat.com.br/static/images/og/starter.png" alt="Logo do curso Starter">
<h2>Curso Starter Rocketseat | Diego Fernandes</h2>
<div class="info">
<p>5 módulos</p>
<p>Free</p>
</div>
</div>
<div class="courses_content" id="launchbase">
<img src="https://repository-images.githubusercontent.com/221045496/c6393600-201d-11ea-9fb5-f3f7c763bd2f" alt="Logo do curso Launchbase">
<h2>Launchbase Rocketseat | Mayk Brito</h2>
<div class="info">
<p>12 módulos</p>
<p>R$ 1000,00</p>
</div>
</div>
<div class="courses_content" id="gostack">
<img src="https://downloadcursos.top/wp-content/uploads/2020/03/bootcamp-gostack.png" alt="Logo do curso Gostack">
<h2>Gostack Rocketseat | Diego Fernandes</h2>
<div class="info">
<p>14 módulos</p>
<p>R$ 950,00</p>
</div>
</div>
</section>
<div class="modal">
<div class="modal_content">
<div class="icons_modal">
<a class="maximaze_icon"><i class="material-icons">panorama_wide_angle</i></a>
<a class="close_icon"><i class="material-icons">close</i></a>
</div>
<iframe src="" frameborder="0"></iframe>
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>