-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
156 lines (142 loc) · 4.68 KB
/
index.html
File metadata and controls
156 lines (142 loc) · 4.68 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
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Talento Sistemas</title>
<!-- Fuente -->
<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=Krub:wght@400;700&display=swap" rel="stylesheet">
<!-- Hojas de Estilo -->
<link rel="preload" href="css/normalize.css" as="style">
<link rel="stylesheet" href="css/normalize.css">
<link rel="preload" href="css/style.css" as="style">
<link rel="stylesheet" href="css/style.css">
<!-- Iconos -->
<link href='https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<header>
<div id="arriba"></div>
<div class="linea-ts sombra" id="uno"></div>
<div class="linea-ts sombra" id="dos"></div>
<h1 id="talento-sistemas">Talento <br> Sistemas</h1>
<h2 id="codecamping-TS" class="sombra">CodeCamping TS</h2>
</header>
<div id="fecha">
<p>Inicio: sábado 23 de abril</p>
</div>
<!--- Herramientas -->
<section class="herramientas">
<h2 class="subtitulos sombra">Herramientas</h2>
<div class="sombra">
<h2>Construyendo buenas bases de programación</h2>
<p>
<a class="sesiones" href="https://youtu.be/kjp3QOoIeBs" target="_blank">Sesión 1</a>
<a class="sesiones" href="https://www.youtube.com/watch?v=-RDoAZiOTvo" target="_blank">Sesión 2</a>
</p>
</div>
<br>
<div class="sombra">
<h2>Git y Github - Controla tus versiones</h2>
<p></p>
</div>
</section>
<br>
<!--- Python -->
<section class="python">
<h2 class="subtitulos sombra">Python</h2>
<div class="sombra">
<h2>Introducción</h2>
<p></p>
</div>
<br>
<div class="sombra">
<h2>Programación Orientada a Objetos</h2>
<p></p>
</div>
<br>
<div class="sombra">
<h2>Avanzado: Graficación con Tkinter</h2>
<p></p>
</div>
</section>
<br>
<!--- Java -->
<section class="java">
<h2 class="subtitulos sombra">Java</h2>
<div class="sombra">
<h2>Introducción</h2>
<p></p>
</div>
<br>
<div class="sombra">
<h2>Programación Orientada a Objetos</h2>
<p></p>
</div>
<br>
<div class="sombra">
<h2>Avanzado: Interfaces gráficas</h2>
<p></p>
</div>
</section>
<br>
<!--- FOOTER -->
<footer>
<nav id="redes">
<div id="aprendizaje">Aprendizaje y grupos de Estudio en:</div>
<ul>
<li class="icon">
<a href="https://www.youtube.com/channel/UCU3Hh50_26pCDKI15DV25Og" target="_blank">
<svg heigth="80" width="80">
<circle cx="40" cy="40" r=30 stroke="#f00" stroke-width="4" fill="none" ></circle>
</svg>
<i class='bx bxl-youtube'></i>
</a>
</li>
<li class="icon">
<a href="https://t.me/+vAYuSMCmoVMyMzI5" target="_blank">
<svg heigth="80" width="80">
<circle cx="40" cy="40" r=30 stroke="#1d98dc"
stroke-width="4" fill="none" ></circle>
<!-- stroke: grosor del círculo -->
</svg>
<i class='bx bxl-telegram' ></i>
</a>
</li>
<li class="icon">
<a href="https://discord.gg/GC6nA7PBhq" target="_blank">
<svg heigth="80" width="80">
<circle cx="40" cy="40" r=30 stroke="#5865F2" stroke-width="4" fill="none" ></circle>
</svg>
<i class='bx bxl-discord-alt' ></i>
</a>
</li>
<li class="icon">
<a href="https://github.com/TalentoSistemas" target="_blank">
<svg heigth="80" width="80">
<circle cx="40" cy="40" r=30 stroke="#0d1117" stroke-width="4" fill="none" ></circle>
</svg>
<i class='bx bxl-github' ></i>
</a>
</li>
<li class="icon">
<a href="https://www.facebook.com/groups/talentosistemas" target="_blank">
<svg heigth="80" width="80">
<circle cx="40" cy="40" r=30 stroke="#3578E5"
stroke-width="4" fill="none" ></circle>
</svg>
<i class='bx bxl-facebook'></i>
</a>
</li>
</ul>
</nav>
<hr>
<div id="copyright">
<small>© 2022 Talento Sistemas</small>
</div>
</footer>
</body>
</html>