-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (74 loc) · 2.1 KB
/
index.html
File metadata and controls
84 lines (74 loc) · 2.1 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8" />
<title>Dualtech - Assistência técnica</title>
<!-- Estilos de reset -->
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<!-- Folhas de estilização do site -->
<link rel="stylesheet" type="text/css" href="css/grid.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/home.css" />
<link rel="stylesheet" type="text/css" href="css/responsivo.css" />
</head>
<body>
<div class="global__box container">
<!-- INÍCIO DO HEADER -->
<header class="main__header grid-16">
<ul class="header__items grid-9">
<li class="items__path grid-5">
<span class="grid-3">
Home
</span>
</li>
<li class="items__logo">
<a href="index.html">
Dualtech
</a>
</li>
</ul>
</header>
<!-- FIM DO HEADER -->
<div class="content__menu">
<!-- INÍCIO DO BANNER/CALL-TO-ACTION -->
<section class="action__section grid-15">
<div class="box__section grid-14">
<h1 class="section__title">
Assistência técnica em impressoras e computadores
</h1>
<a class="section__link" href="#" target="_blank">
Entrar em contato
</a>
</div>
</section>
<!-- FIM DO BANNER/CALL-TO-ACTION -->
<!-- INÍCIO DO MENU LATERAL (PRINCIPAL) -->
<aside class="main__menu grid-nav">
<nav>
<ul class="menu__items">
<li class="items__back">
<a href="contato.html">
</a>
</li>
<li class="items__item">
<a class="item--ativo" href="index.html"></a>
</li>
<li class="items__item">
<a href="servicos.html"></a>
</li>
<li class="items__item">
<a href="contato.html"></a>
</li>
<li class="items__next">
<a href="servicos.html">
</a>
</li>
</ul>
</nav>
</aside>
<!-- FIM DO MENU LATERAL (PRINCIPAL) -->
</div>
</div>
</body>
</html>