-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (87 loc) · 4.17 KB
/
index.html
File metadata and controls
94 lines (87 loc) · 4.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
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
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Certificações da Microsoft Azure</title>
<!-- BOOTSTRAP CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- ICONS BOXICONS CSS -->
<link href='https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css' rel='stylesheet'>
<!-- CUSTOM CSS -->
<link href="src/css/custom-index.css" rel="stylesheet">
<!-- GOOGLE SEARCH CONSOLE -->
<meta name="google-site-verification" content="XQsiX2YxaWq7-5UC_GOf7TztluKwd9738FXi1Y62G7A" />
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar navbar-expand-lg navbar-light bg-white sticky-top navbar-shadow">
<div class="container">
<a class="navbar-head">CERTIFICAÇÕES DA MICROSOFT AZURE</a>
</div>
</nav>
<!-- SECTION -->
<section id="certificados" class="text-center">
<div class="container">
<div class="row g-4">
<!-- CERTIFICATE CARD TEMPLATE -->
<template id="certificado-card-template">
<div class="col-lg-4 col-md-6">
<div class="certificado-card">
<img src="" alt="">
<h5></h5>
<p></p>
<div class="buttons">
<a href="" class="btn-plano">Plano de Estudo</a>
<a href="" class="btn-simulado">Fazer Simulado</a>
</div>
</div>
</div>
</template>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-top text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6 text-center">
<h4 class="navbar-footer">Estude Bem e Arrase no Dia do Exame! 🌟</h4>
<p>Espero que esses planos de estudos e os simulados sejam ferramentas valiosas na sua preparação
como foi para mim. Lembre-se de que a dedicação e a perseverança são essenciais para
alcançar seus objetivos.🍀📚</p>
<div class="col-auto social-icons">
<a href="https://github.com/RoodneyMoraes" target="_blank"><i class='bx bxl-github'></i></a>
<a href="https://www.linkedin.com/in/roodney-moraes" target="_blank"><i
class='bx bxl-linkedin'></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="footer-bottom text-center">
<p class="mb-0"><i>Copyright@2024. Roodney Moraes</i></p>
</div>
</footer>
<!-- COOKIE CONSENT BANNER -->
<div class="cookie-consent-banner bg-light text-dark p-3 fixed-bottom d-flex justify-content-between align-items-center"
id="cookieConsentBanner" style="display: none !important">
<div>
Este site utiliza cookies para melhorar a experiência do usuário e analisar o tráfego do site. Ao clicar em
"Aceitar", você concorda com o uso de cookies do Google Analytics.
</div>
<div>
<button type="button" class="btn btn-secondary btn-sm me-2" id="declineConsent">Recusar</button>
<button type="button" class="btn btn-primary btn-sm" id="acceptConsent">Aceitar</button>
</div>
</div>
<!-- BOOTSTRAP JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<!-- GOOGLE TAG -->
<script src="src/js/google-analytics.js"></script>
<!-- CUSTOM INDEX -->
<script src="src/js/custom-index.js"></script>
</body>
</html>