-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
56 lines (49 loc) · 1.76 KB
/
index.php
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
<!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="css/styles_loja.css">
<title>Serviços de T.I.</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">Início</a></li>
<li><a href="#">Serviços</a></li>
<li><a href="#">Sobre Nós</a></li>
<li><a href="#">Contato</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h1>Contrate ou Ofereça um Serviço</h1>
<p>Nossa plataforma é focada na experiência do usuário, oferecendo um técnico mais proximo de você.</p>
</section>
<h2>Serviços Disponíveis</h2>
<section class="services">
<div class="service">
<img src="img/manutencao.png" alt="Serviço 1">
<h3>Linpeza Preventiva</h3>
<p>Faço limpeza do pc e formatação com backup.</p><br>
<a href="#" class="btn">Contratar</a>
</div>
<div class="service">
<img src="img/redes.png" alt="Serviço 2">
<h3>Suporte na Rede</h3>
<p>Emplementação de firewall, dados em nuvem criptografado e suporte a equipamentos de rede.</p><br>
<a href="#" class="btn">Contratar</a>
</div>
<div class="service">
<img src="img/remoto.png" alt="Serviço 3">
<h3>Acesso Remoto</h3>
<p>Suporte Remoto via TeamViewer, intalações de programas e remoçoes de malware. </p>
<a href="#" class="btn">Contratar</a>
</div>
</section>
<footer>
<p>© 2023 Loja de Serviços de T.I.</p>
</footer>
</body>
</html>