-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (26 loc) · 1.23 KB
/
Copy pathindex.html
File metadata and controls
32 lines (26 loc) · 1.23 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PORTAL DE NOTÍCIAS GALÁCTICAS</title>
<link rel="stylesheet" href="/styles/card.css">
<script src="/src/components/CardNews.js" defer></script>
<script src="/src/components/TituloDinamico.js" defer></script>
</head>
<body>
<div class="container">
<card-news autor="Carlos" title="Darth Vader Contrata Devs." link-url="https://www.google.com.br"
photo="assets/assets-Vader.jpeg" photo-default="assets/foto-padrao.jpg"
content="Darth Vader procura desenvolvedores que saibam trabalhar com componentes.">
</card-news>
<card-news autor="Victor" title="Yoda propõe utilização de componentes." link-url="https://www.google.com.br"
photo-default="assets/foto-padrao.jpg"
content="Yoda propõe utilização de componentes para a republica. A República esta alarmada.">
</card-news>
<card-news autor="Carlos" title="Criação de componentes." link-url="https://www.google.com.br"
photo-default="assets/foto-padrao.jpg"
content="Trabalho para criação de componentes concluído. Grandes expectativas. TOP">
</card-news>
</body>
</html>