-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
74 lines (70 loc) · 2.95 KB
/
about.html
File metadata and controls
74 lines (70 loc) · 2.95 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
<!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:wght@100..900&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="about">
<h2>¿Qué es Espython?</h2>
<p>
Espython es una plataforma educativa que te permite aprender
Python de manera sencilla y divertida. Con Espython, podrás
adentrarte en el fascinante mundo de la programación de una
forma única y amigable.
</p>
<h2>¿Por qué Espython?</h2>
<p>
En Espython, creemos que la programación no tiene por qué
ser aburrida o complicada. Por eso, hemos creado una
plataforma que te ayuda en tu aprendizaje de Python de
manera emocionante y accesible. Con Espython, podrás dominar
Python de una forma divertida y sencilla.
</p>
<h2>¿Cómo funciona Espython?</h2>
<p>
Espython es un chatbot interactivo que te resolverá todas
tus dudas acerca de uno de los lenguajes de programación más
populares del mundo: Python. Con Espython, podrás aprender
Python de manera autodidacta y divertida, sin importar tu
nivel de conocimientos previos.
</p>
</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>