<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Principal</title>
<script type='text/javascript' src='jquery-1.4.2.min.js'></script>
<script type='text/javascript' src='scripts.js'></script>
<link type="text/css" rel="stylesheet" href="estilo.css" />
</head>
<body>
<h1 class="titulo1">Este es el titulo principal</h1>
<h2 class="titulo2">Elemento 2</h2>
<p>Elements on the web page. Next, we choose an action to be applied to each element we’ve selected. We’ll see more and more actions as we implement effects throughout the book. And finally, we specify some parameters to tell jQuery how exactly we want to apply the chosen action. Whenever you see jQuery code, try to break it up into these component parts. It will make it a lot easier to comprehend when you’re just starting out.</p>
<ul>
<li>Elemento 1</li>
<li>Elemento 2</li>
<li>Elemento 3</li>
<li>Elemento 4</li>
<li>Elemento 5</li>
</ul>
<p>Elements on the web page. Next, we choose an action to be applied to each element we’ve selected. We’ll see more and more actions as we implement effects throughout the book. And finally, we specify some parameters to tell jQuery how exactly we want to apply the chosen action. Whenever you see jQuery code, try to break it up into these component parts. It will make it a lot easier to comprehend when you’re just starting out.</p>
<div id="gente">
<h2 class="titulo2">Nuestro Seleccionados</h2>
<p class="info">
Esta es una lista de personas muy importantes y bastante famosas.
<table class="datos">
<thead>
<tr>
<th>ID</th>
<th>Nombre</th>
<th>Ocupación</th>
<th>Localización</th>
<th>Precio</th>
</tr>
</thead>
<tbody>
<tr>
<td>203A</td>
<td>Jose Sandoval (<a href="bio.pdf">info</a>)</td>
<td>Portero</td>
<td>Los Angeles</td>
<td>$39.95</td>
</tr>
<tr>
<td>141B</td>
<td>Alberto Albert (<a href="img.jpg">foto</a>,<a href="bio.pdf">info</a>)</td>
<td>Cantante</td>
<td>Cabo San Lucas</td>
<td>$39.95</td>
</tr>
<tr>
<td>2031</td>
<td>Eliza Guerrero (<a href="img.jpg">foto</a>)</td>
<td>Productora</td>
<td>Chihuahua</td>
<td>$19.95</td>
</tr>
<tr>
<td>007F</td>
<td>Angela Pastor (<a href="bio.pdf">foto</a>,<a href="w.doc">articulo</a>)</td>
<td>Cantante</td>
<td>Guadalajara</td>
<td>$11.95</td>
</tr>
<tr>
<td>8A05</td>
<td>Artur Art (<a href="img.jpg">foto</a>)</td>
<td>DJ</td>
<td>El Paso</td>
<td>$19.95</td>
</tr>
<tr>
<td>6636</td>
<td>Andrea Becerra (<a href="bio.pdf">info</a>,<a href="w.doc">articulo</a>)</td>
<td>Pintor</td>
<td>Novojoa</td>
<td>$39.95</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>