-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (83 loc) · 3.25 KB
/
index.html
File metadata and controls
87 lines (83 loc) · 3.25 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
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" href="images/python.ico" />
<title>Espython</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<div class="left">
<img src="images/python.svg" alt="logo de python" />
<h1>Espython</h1>
</div>
<div class="right">
<a href="index.html">Home</a>
<a href="about.html">Acerca de</a>
<a href="chatbot.html">Chatbot</a>
</div>
</header>
<main>
<div class="hero">
<div>
<h2>
Sobrecarga tus
<span
style="
color: #f6e070;
text-shadow: 0 0 10px rgba(131, 131, 131, 0.5);
"
>conocimientos</span
>
con el poder de la
<span
style="
color: #f6e070;
text-shadow: 0 0 10px rgba(131, 131, 131, 0.5);
"
>IA</span
>
</h2>
<p>
¡Domina Python de manera divertida y sencilla! Con
Espython, descubre una forma única y amigable de
adentrarte en el fascinante mundo de Python. ¡Haz que la
programación sea emocionante y accesible con Espython
hoy mismo!
</p>
<div class="hero-buttons">
<button onclick="window.location.href='chatbot.html'">
Comienza ahora
</button>
<button onclick="window.location.href='about.html'">
Aprende más
</button>
</div>
</div>
<img src="images/ejemplo.png" alt="ejemplo uso" />
</div>
</main>
<footer>
<p>© Espy 2024</p>
<div class="footer-links">
<a target="blank" href="https://www.youtube.com/@EspySoftware">
<img src="images/youtube.svg" alt="youtube" />
</a>
<a
target="blank"
href="https://github.com/dannasndz/Web_Bot_Espy"
>
<img src="images/github.svg" alt="github" />
</a>
</div>
</footer>
</body>
</html>