-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.html
85 lines (66 loc) · 2.57 KB
/
news.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Malware DataLab</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="css/Style.css">
<link rel="stylesheet" href="css/style.main.screen.css">
<link rel="stylesheet" href="css/modal.css">
</head>
<body>
<div id="navbar"></div>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" style="background-color: rgba(0,0,0,0.88); position: relative;">
<div class="carousel-item active">
<div style="width: 100%; display: flex; justify-content: center; align-items: center;">
<img src="img/c17.png" style="width: 100%; object-fit: cover; filter: brightness(0.60);" class="d-block" alt="...">
</div>
<div style="position: absolute; top: 50%; right: 10%; transform: translateY(-50%);">
<h1 style="font-size: 4vw; color: white; margin-right: 10px;">Novidades</h1>
</div>
</div>
</div>
</div>
<br>
<br>
<br>
<br>
<br>
<div class="row bright-content ">
<div class="container mt-8" id="#news" >
<!-- Cards Container -->
<div class="row" id="lista-completa">
</div>
</div>
<br>
<br>
<br>
<br>
<br>
</div>
<div id="footer"></div>
<!-- Script para carregar navbar e rodapé -->
<script>
// Carrega a navbar
fetch('navbar.html')
.then(response => response.text())
.then(data => document.getElementById('navbar').innerHTML = data);
// Carrega o rodapé
fetch('footer.html')
.then(response => response.text())
.then(data => document.getElementById('footer').innerHTML = data);
</script>
<!-- JS Files -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="js/MainScreen.js"></script>
<script src="js/Modal.js"></script>
<script src="js/News.js"></script>
</div>
</body>
</html>