forked from inkra-co/InkraSite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
160 lines (158 loc) · 6.52 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Normalizae CSS -->
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/8.0.1/normalize.css">
<!-- Mis estilos -->
<link rel="stylesheet" href="./css/styles.css">
<!-- Jam Icons -->
<link rel="stylesheet" href="https://unpkg.com/jam-icons/css/jam.min.css">
<title>Bienvenidos | Inkra</title>
</head>
<body>
<!-- Cabecera -->
<header class="main-header">
<div class="content-wrapper">
<a href="./index.html">
<img src="" alt="Logo">
</a>
<span id="open-menu-button" class="jam jam-menu"></span>
<nav id="main-menu" class="main-menu">
<span id="close-menu-button" class="jam jam-close"></span>
<ul>
<li>
<a href="./index.html">Inicio</a>
</li>
<li>
<a href="/nosotros.html">¿ Quienes somos?</a>
</li>
<li>
<a href="/proyectos.html"> Proyectos</a>
</li>
<li>
<a href="/contacto.html">Contacto</a>
</li>
</ul>
</nav>
</div>
</header>
<main>
<!-- Banner principal -->
<section class="main-banner section-container">
<div class="content-wrapper content">
<div class="container">
<h1 class="title">Bienvenidos a Inkra</h1>
<p class="subtitle">Si necesitas asesoria en desarrollo de software consultandos para tener un buen
servicio.</p>
<div>
<a class="button white" href="./contacto.html">Escribenos ya mismo</a>
</div>
</div>
<div class="container">
<img class="image" src="./images/computer.svg" alt="Computador EDSoft">
</div>
</div>
</section>
<!-- nuestros sevicios -->
<section class="services-section section-container">
<h2>Nuestros servicios</h2>
<div class="content-wrapper">
<article class="service-item">
<span class="jam jam-attachment"></span>
<h3>Servicio 1</h3>
<p>Diseñamos tu presencia en Internet</p>
</article>
<article class="service-item">
<span class="jam jam-computer"></span>
<h3>Servicio 1</h3>
<p>Diseñamos tu presencia en Internet</p>
</article>
<article class="service-item">
<span class="jam jam-keyboard"></span>
<h3>Servicio 1</h3>
<p>Diseñamos tu presencia en Internet</p>
</article>
</div>
</section>
<!-- Sobre nosotros -->
<section class="section-container about-section">
<div class="content-wrapper">
<h2 class="title">Sobre nosotros</h2>
<p>Este sitio web de nuestra agencia ...</p>
<a href="" class="button white ghost">Contactanos</a>
</div>
<img class="background" src="./images/bg-section.jpg" alt="Imagen de fondo">
</section>
<!-- Ultimos proyectos -->
<section class="section-container last-projects">
<h2>Últimos proyectos</h2>
<div class="content-wrapper">
<a href="#" class="project-item">
<article>
<div>
<h4>Titulo proyecto</h4>
<p>Descripción de proyecto</p>
</div>
<div class="image-container">
<img src="./images/project-1.jpg" alt="Proyecto 1">
</div>
</article>
</a>
<a href="#" class="project-item">
<article>
<div>
<h4>Titulo proyecto</h4>
<p>Descripción de proyecto</p>
</div>
<div class="image-container">
<img src="./images/project-2.jpg" alt="Proyecto 2">
</div>
</article>
</a>
<a href="#" class="project-item">
<article>
<div>
<h4>Titulo proyecto</h4>
<p>Descripción de proyecto</p>
</div>
<div class="image-container">
<img src="./images/project-3.jpg" alt="Proyecto 3">
</div>
</article>
</a>
<a href="#" class="project-item">
<article>
<div>
<h4>Titulo proyecto</h4>
<p>Descripción de proyecto</p>
</div>
<div class="image-container">
<img src="./images/project-4.jpg" alt="Proyecto 4">
</div>
</article>
</a>
</div>
</section>
<!-- Trabaja con nosotros -->
<section class="work-with-us">
<div class="content-wrapper">
<h2 class="title">¿Quieres trabajar con nosotros ?</h2>
<p class="subtitle">Es momento de convertir tus ideas en realidad-</p>
<a href="mailto:[email protected]" class="button">[email protected]</a>
<div class="social-networks">
<a href="#" target="_blank"><span class="jam jam-facebook"></span></a>
<a href="#" target="_blank"><span class="jam jam-twitter"></span></a>
<a href="#" target="_blank"><span class="jam jam-whatsapp"></span></a>
<a href="#" target="_blank"><span class="jam jam-instagram"></span></a>
</div>
</div>
</section>
</main>
<footer class="main-footer">
<p>Todos los derechos reservados @inkra.co</p>
</footer>
<script src="./js/menu.js"></script>
</body>
</html>