-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistado.html
114 lines (109 loc) · 4.21 KB
/
listado.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Herramientas de Frontend y Backend</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #4CAF50;
color: white;
padding: 20px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
section {
max-width: 900px;
margin: 20px auto;
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
color: #333;
font-size: 1.8em;
margin-bottom: 10px;
}
p {
color: #555;
font-size: 1.1em;
line-height: 1.6;
}
ul {
list-style-type: square;
padding-left: 20px;
}
ul li {
margin-bottom: 10px;
}
.container {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.container div {
width: 45%;
padding: 10px;
margin-bottom: 20px;
}
@media (max-width: 768px) {
.container div {
width: 100%;
}
}
footer {
text-align: center;
padding: 15px;
background-color: #333;
color: white;
}
</style>
</head>
<body>
<header>
<h1>Herramientas de Frontend y Backend</h1>
</header>
<section>
<h2>Listado de Herramientas</h2>
<div class="container">
<div>
<h3>Herramientas de Frontend</h3>
<ul>
<li><strong>React</strong>: Librería de JavaScript para construir interfaces de usuario.</li>
<li><strong>Vue.js</strong>: Framework progresivo de JavaScript para construir interfaces de usuario y aplicaciones de una sola página.</li>
<li><strong>Angular</strong>: Framework de desarrollo de aplicaciones web construido por Google, basado en TypeScript.</li>
<li><strong>Bootstrap</strong>: Librería de CSS y JavaScript para el diseño de interfaces web responsivas.</li>
<li><strong>Tailwind CSS</strong>: Framework de CSS utilitario que permite crear interfaces sin tener que escribir CSS personalizado.</li>
<li><strong>Sass</strong>: Preprocesador de CSS que facilita la escritura de estilos mediante funciones avanzadas.</li>
<li><strong>Webpack</strong>: Empaquetador de módulos para aplicaciones web, optimizando recursos para el frontend.</li>
</ul>
</div>
<div>
<h3>Herramientas de Backend</h3>
<ul>
<li><strong>Node.js</strong>: Entorno de ejecución de JavaScript para construir aplicaciones del lado del servidor.</li>
<li><strong>Express</strong>: Framework web para Node.js, diseñado para construir aplicaciones web y APIs.</li>
<li><strong>Laravel</strong>: Framework PHP que ofrece una estructura para el desarrollo de aplicaciones web robustas.</li>
<li><strong>Django</strong>: Framework de alto nivel en Python que promueve el desarrollo rápido y limpio de aplicaciones web.</li>
<li><strong>Flask</strong>: Microframework ligero para Python, utilizado para crear aplicaciones web simples y rápidas.</li>
<li><strong>Ruby on Rails</strong>: Framework para el desarrollo rápido de aplicaciones web utilizando Ruby.</li>
<li><strong>Spring Boot</strong>: Framework para el desarrollo de aplicaciones empresariales y microservicios en Java.</li>
</ul>
</div>
</div>
</section>
<footer>
<p>© 2024 Herramientas de Desarrollo Web - Todos los derechos reservados</p>
</footer>
</body>
</html>