-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (50 loc) · 2.51 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>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>TyR - Ejemplos de mensajes HTTP</title>
<style type="text/css">
body {
margin:50px 0px; padding:0px;
text-align:center;
}
#content {
width:500px;
margin:0px auto;
text-align:left;
padding:15px;
border:1px dashed #333;
background-color:#eee;
}
</style>
</head>
<body>
<div id='content'>
<div style="text-align: center">
<img src="./img/net.png" alt="Redes" />
<h1>Ejemplos de mensajes HTTP</h1>
</div>
<h2>Indice</h2>
<ol>
<li>Básicos
<ol>
<li><a href="http_basic/index_get.html">Ejemplo sencillo de método GET</a></li>
<li><a href="http_basic/index_post.html">Ejemplo sencillo de método POST</a></li>
</ol>
</li>
<li>Ajax
<ol>
<li><a href="ajax_tyr/ajax/index.html">Ajax básico</a></li>
<li><a href="ajax_tyr/ajax/index_get.html">GET mediante Ajax básico</a></li>
<li><a href="ajax_tyr/ajax/index_post.html">POST mediante Ajax básico</a></li>
<li><a href="ajax_tyr/ajax_jquery/index.html">jQuery petición básica</a></li>
<li><a href="ajax_tyr/ajax_jquery/index_get.html">GET mediante jQuery</a></li>
<li><a href="ajax_tyr/ajax_jquery/index_post.html">POST mediante jQuery</a></li>
</ol>
</li>
<li><a href="cookies-tyr/cookie_example.html">Ejemplo de Cookies</a></li>
</ol>
<p style='text-align: center; background-color: gainsboro;'>TyR 2013</p>
</div>
</body>
</html>