-
Notifications
You must be signed in to change notification settings - Fork 132
/
index.html
88 lines (78 loc) · 4.25 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Materiales para cursos sobre tecnologías web en la ETSIT de la Universidad Rey Juan Carlos">
<meta name="author" content="Jesús M. González Barahona y Gregorio Robles">
<title>Cursos sobre tecnologías web (código)</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<!-- Custom styles for this template -->
<link href="http://cursosweb.github.io/jumbotron.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://github.com/CursosWeb/Code">Código fuente de todos estos materiales</a>
</div>
</div>
</nav>
<div class="jumbotron">
<div class="container">
<h1>Cursos sobre tecnologías web (código)</h1>
<p>Código relacionado con los <a href="http://cursosweb.github.io">cursos sobre tecnologías web</a> impartidos en la <a href="http://www.etsit.urjc.es">Escuela de Ingeniería de Telecomunicación</a> de la <a href="http://www.urjc.es">Universidad Rey Juan Carlos</a></p>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-6">
<h2>IST-SARO e ITT-SAT</h2>
<p>Casi todo el código de estas asignaturas no puede mostrar sus efectos simplemente ejecutándolo en el navegados, hace falta ejecutarlo sobre un intérprete Python. Pero hay alguna excepción</p>
<ul>
<li><a href="Python-Web">Servidores web simples en Python</a></li>
<li><a href="REST">Servidores web que interoperan (simples, en Python)</a></li>
<li><a href="XML">XML y Python</a></li>
<li><a href="CSS">CSS</a></li>
<li><a href="Ajax">Ajax</a> (<a href="http://cursosweb.github.io/Code/Ajax/spa-sentences-generator/">demos online</a>)</li>
</ul>
</div>
<div class="col-md-6">
<h2>ITT-DAT e IT-AT</h2>
<ul>
<li><a href="HTML">Introducción a HTML</a></li>
<li><a href="CSS">Introducción a CSS</a></li>
<li><a href="JavaScript">Introducción a JavaScript</a></li>
<li><a href="jQuery">Introducción a jQuery</a></li>
<li><a href="HTML5">Introducción a HTML5</a></li>
<li><a href="JS-Libs">Algunas bibliotecas JavaScript</a> (<a href="http://cursosweb.github.io/Code/JS-Libs/jquery-ui">demos online relacionadas con jQuery-UI</a>)</li>
<li><a href="JS-APIs">APIs de servicio usadas desde JavaScript</a> (<a href="http://cursosweb.github.io/Code/JS-APIs/leaflet">demos online relacionadas con mapas</a>, <a href="http://cursosweb.github.io/Code/JS-APIs/github">demos online relacionadas con GitHub</a>)</li>
<li><a href="OAuth">OAuth</a> (<a href="http://cursosweb.github.io/Code/OAuth">demos online</a>)</li>
</ul>
</div>
<hr>
<footer>
<p>© CursosWeb 2015</p>
</footer>
</div> <!-- /container -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
</body>
</html>