-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservico.html
69 lines (69 loc) · 2.42 KB
/
servico.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="servico.css">
<title>Analista de Dados</title>
</head>
<body>
<header>
<div class="logo">
<img src="img/logo.png" alt="Logo do Computador" class="imagem-logo">
</div>
<nav>
<ul>
<li><a href="index.html">Início</a></li>
<li><a href="sobre.html">Sobre</a></li>
<li><a href="servico.html">Serviço</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</nav>
</header>
<main>
<section class="card-container">
<article class="card">
<img src="img/servico1.png" alt="Serviço 1">
<h2>Google Cloud</h2>
</article>
<article class="card">
<img src="img/servico2.png" alt="Serviço 2">
<h2>Python</h2>
</article>
<article class="card">
<img src="img/servico3.png" alt="Serviço 3">
<h2>SQL</h2>
</article>
<article class="card">
<img src="img/servico4.png" alt="Serviço 4">
<h2>MongoDB</h2>
</article>
<article class="card">
<img src="img/servico5.png" alt="Serviço 5">
<h2>Excel</h2>
</article>
<article class="card">
<img src="img/servico6.png" alt="Serviço 6">
<h2>Machine Learning</h2>
</article>
<article class="card">
<img src="img/servico7.png" alt="Serviço 7">
<h2>Power BI</h2>
</article>
<article class="card">
<img src="img/servico8.png" alt="Serviço 8">
<h2>Data Storytelling</h2>
</article>
</section>
</main>
<footer>
<div class="footer-container">
<p>© 2024 Aline Melo. Todos os direitos reservados.</p>
</div>
</footer>
</body>
</html>
<!--Porjeto descodifica trilha 2-->