-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (44 loc) · 1.58 KB
/
index.html
File metadata and controls
53 lines (44 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>AnaliTIC's</title>
<link rel="stylesheet" href="/css/index.css">
</head>
<body>
<header>
<div class="container">
<p class="logo"><img src="/img/logo.svg" alt="Logo" height="75px"></p>
</div>
</header>
<section id="hero">
<h1>Conéctate al Mundo <br>con Nosotros</h1>
<button onclick="irAPagina()">¡COMENCEMOS!</button>
<script>
function irAPagina() {
window.location.href = "menu.html";
}
</script>
</section>
<section id="somos-proya">
<div class="container">
<div class="img-container"></div>
<div class="texto">
<h2>Somos <span class="color-acento">AnaliTIC's 2.0 el regreso de la maquina y el poderoso python</span></h2>
<p>En <strong class="color-acento">AnaliTIC's</strong>, te ayudamos en tu experiencia en el mundo estadisticon con herramientas de analisis de datos, correlaciones, convinaciones y demas.</p>
<br><br><br>
<button onclick="irAPagina2()" style="color: #fff; padding: 10px; background-color: rgb(6, 163, 3); border-radius: 10px;">Necesitas ayuda?</button>
<script>
function irAPagina2() {
window.location.href = "ayuda.html";
}
</script>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© AnaliTIC's 2025</p>
</div>
</footer>
</body>
</html>