generated from Lorenalgm/codar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (126 loc) · 4.41 KB
/
index.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<!-- General meta tags needed-->
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- Needed for responsive design -->
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Codar</title>
<!-- Google Fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400&display=swap"
rel="stylesheet"
/>
<!-- CSS File -->
<link rel="stylesheet" type="text/css" href="./style.css" />
<!-- Feather Icons -->
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body>
<header class="container">
<div class="logo">
<h1>Codar<span>.<span></h1>
</div>
<nav>
<ul>
<li><a href="#">Início</a></li>
<li><a href="#">Serviços</a></li>
<li><a href="#">Contato</a></li>
<li><a href="#" class="btn btn-login">Login</a></li>
</ul>
</nav>
</header>
<main class="container">
<img src="./assets/video_call.png" alt="Video Call" class="image" />
<article class="information">
<h3>Alavanque seu negócio com um</h3>
<h1>Website incrível</h1>
<a href="#" class="btn btn-cta">Solicitar Orçamento</a>
</article>
</main>
<section class="container">
<article class="services">
<ul>
<li><i data-feather="check-circle"></i>Domínio personalizado</li>
<li><i data-feather="check-circle"></i>Hospedagem</li>
<li><i data-feather="check-circle"></i>Site responsivo</li>
<li><i data-feather="check-circle"></i>Redes sociais</li>
<li><i data-feather="check-circle"></i>Chat online</li>
<li><i data-feather="check-circle"></i>Blog integrado</li>
</ul>
<img src="./assets/coding_.png" alt="Coding" class="image" />
</article>
<article class="contact">
<h3>Nossa equipe está à disposição!</h3>
<div class="input-group">
<input type="text" placeholder="Celular" />
<a href="#" class="btn">Ligamos para você</a>
</div>
</article>
</section>
<section class="comments container">
<h2>Depoimentos</h2>
<div class="cards">
<div class="card">
<div class="comments-image"></div>
<div class="comments-information">
Já tive experiências com outras 4 empresas da área e a Codar é sem sombra de dúvidas
superior em todos os aspectos.
<span class="comments-name"> Pedro Ferreira </span>
<span class="comments-company"> Construtora Minari </span>
</div>
</div>
<div class="card">
<div class="comments-image"></div>
<div class="comments-information">
Processos bem simples e criação de um site exatamente como a minha escola queria!
<span class="comments-name"> Maria Rita </span>
<span class="comments-company"> Escola Criança Feliz </span>
</div>
</div>
</div>
</section>
<footer>
<section class="container">
<article>
<h1>Codar.</h1>
<p>Criamos websites incríveis</p>
</article>
<article>
<h3>Sobre</h3>
<p>Amamos criar soluções e entregar sites incríveis</p>
</article>
<article>
<h3>Contato</h3>
<ul>
<li>123 Av. Manjar - Nárnia</li>
<li>+55 96 2321-3131</li>
<li>[email protected]</li>
</ul>
</article>
<article>
<h3>Redes Sociais</h3>
<ul>
<li>
<a href="#" class="custom-icon"><i data-feather="facebook"></i></a>
</li>
<li>
<a href="#" class="custom-icon"><i data-feather="instagram"></i></a>
</li>
<li>
<a href="#" class="custom-icon"><i data-feather="twitter"></i></a>
</li>
</ul>
</article>
</section>
</footer>
<script>
feather.replace();
</script>
</body>
</html>