-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (62 loc) · 3.04 KB
/
Copy pathindex.html
File metadata and controls
93 lines (62 loc) · 3.04 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style2.css">
<title>Blog tech</title>
</head>
<body>
<div class="caixa-video">
<video src="./Vídeos/tech.mp4" loop muted autoplay></video>
</div>
<div class="sombreamento"></div>
<header>
<section>
<div class="conteiner-caixas">
<div class="caixa-conteudo_realidade_virtual" onclick="abrir_PostRV()"> Saiba mais</div>
<h2 class="titulo-do-blog">E se você pudesse ser outra pessoa e estar em outro lugar?</h2>
<p class="trecho-curto-blog">Realidade virtual: entenda o que é e como funciona a tecnologia.</p>
<img src="img/Imagem realizada virtual para blog tech.jpg" alt="Imagem realidade virtual" style="width: 300px; height: 300px; border-radius: 30%; object-fit: cover;">
</div>
</section>
<section>
<div class="caixa_IA">
<h3 class="titulo-do-blog-IA" onclick="avanco_IA()">Saiba Mais</h3>
<h4 class="segundo_item_IA">O sol vai morrer antes dos desenvolvedores de software?</h4>
<p class="trecho-curto-blog">A IA avançará cada vez mais no apoio à codificação realizada pelos desenvolvedores.</p>
<img src="img/Img programadores mais IA.png" alt="Imagem IA mais programadores" style="width: 300px; height: 300px; border-radius: 30%; object-fit: cover;">
</div>
</section>
<script>
const link_post = "https://www.techtudo.com.br/noticias/2023/03/realidade-virtual-entenda-o-que-e-e-como-funciona-a-tecnologia-edinfoeletro.ghtml";
function abrir_PostRV() {
window.open(link_post, "_blank");
}
const link_IA = "https://www.computerweekly.com/br/opinion/O-sol-vai-morrer-antes-dos-desenvolvedores-de-software"
function avanco_IA() {
window.open(link_IA, "_blank");
}
</script>
<section>
<div class="container-geral-python">
<div class="caixa-python" onclick="linguagem_phython()">Clique aqui para saber mais</div>
<h2 class="titulo-do-blog-phyton">Python chega ao topo das linguagens de programação</h2>
<p class="trecho-curto-blog-phyton">O que isso revela sobre como o mundo está desenvolvendo software?
2025?</p>
<img src="img/Python.png" alt="Imagem Python" style="width: 300px; height: 300px; border-radius: 30%; object-fit: cover;">
</div>
<div>
</section>
<script>
const link_post_phython = "https://www.baguete.com.br/noticias/python-chega-ao-topo-das-linguagens-de-programacao";
function linguagem_phython() {
window.open(link_post_phython, "_blank");
}
</script>
</header>
<div>
</div>
</div>
</body>
</html>