-
Notifications
You must be signed in to change notification settings - Fork 0
/
produto.html
113 lines (113 loc) · 5.02 KB
/
produto.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Produto</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="css/pages/produto.css">
</head>
<body style="background: #ffffff">
<header id="header" class="page-produto">
<div class="container">
<div class="row">
<div class="col col-desktop-3">
<a href="index.html">
<img src="images/logo.png" alt="logo">
</a>
</div>
<div class="col col-desktop-9">
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="quemsomos.html">Quem somos</a></li>
<li><a href="clientes.html">Clientes</a></li>
<li><a href="equipe.html">Equipe</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<main>
<section class="section section-center" id="download">
<img src="images/produto_download.jpg" alt="">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Paresent vitae epos. Donec rurtrun sed quis venenatis</p>
<p><a href="" class="btn">Baixar App</a></p>
</section>
<section class="section section-center" id="funcionalidades">
<h2>Funcionalidades</h2>
<p class="subtitle"> It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p>
<div class="container text-left">
<div class="row">
<div class="col col-desktop-4">
<i class="material-icons">phone_android</i>
<h3>Responsivo</h3>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.</p>
</div>
<div class="col col-desktop-4">
<i class="material-icons">chat_bubble_outline</i>
<h3>Mensagens Diretas</h3>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.</p>
</div>
<div class="col col-desktop-4">
<i class="material-icons">group_work</i>
<h3>Grupos</h3>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.</p>
</div>
<div class="col col-desktop-4">
<i class="material-icons">phone_in_talk</i>
<h3>Chamadas</h3>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.</p>
</div>
<div class="col col-desktop-4">
<i class="material-icons">insert_emoticon</i>
<h3>Emoticons</h3>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.</p>
</div>
</div>
<div class="row">
<div class="col col-desktop-4">
<i class="material-icons">file_download</i>
<h3>Download</h3>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.</p>
</div>
</div>
</div>
</section>
</main>
<footer id="footer">
<div class="container">
<div class="row">
<div class="col col-offset-desktop-1 col-desktop-4">
<p><a href=""><img src="images/logo.png" alt="Logo da Chatschool"></a></p>
<p>What is Lorem Ipsum? Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p>
</div>
<div class="col col-offset-desktop-1 col-desktop-1">
<h3>Menu</h3>
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="quemsomos.html">Quem somos</a></li>
<li><a href="clientes.html">Clientes</a></li>
<li><a href="equipe.html">Equipe</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</nav>
</div>
<div class="col col-desktop-3">
<a href="https://www.facebook.com.br"><img src="images/social-facebook.jpg" alt="logo do face"></a>
<a href="https://www.youtube.com"><img src="images/social-youtube.jpg" alt=""></a>
<a href="https:/twitter.com"><img src="images/social-twitter.jpg" alt=""></a>
</div>
</div>
</div>
</footer>
<div id="copyright">
© Chatschool 2018 - All Rights Reserved
</div>
</body>
</html>