Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions gatitos.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!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.0">
<title>Gatitos.html</title>
</head>
<body>
<h1>Multimedia</h1>
<h2> Acceso directo al contenido de Gatitos.html</h2>
<ol>
<li><a href="#a">Imágenes</a></li><br>
<li><a href="#b">Videos</a></li><br>
<li><a href="#c">Sonidos</a></li><br>
<li><a href="/home/auxi/Escritorio/Thebridge/html-pp-gimnasio/index.html">Facturación</a></li><br>
</ol>
<h2 id="a">Imágenes</h2>
<img src="/home/auxi/Escritorio/Thebridge/gato.jpg" alt="Silueta gato atardecer">
<img src="https://cdn.pixabay.com/photo/2018/02/21/05/17/cat-3169476__340.jpg" alt="Gato bebe negro sentado">
<h2 id="b">Videos</h2>
<video controls src="https://cdn.pixabay.com/vimeo/764361528/Ocean%20-%20135658.mp4?width=1280&hash=f64da4baec74c288939381fc4993230aa8589c80">
Video del mar al atardecer
</video>
<h2 id="c">Sonidos</h2>
<audio controls>
<source src="/home/auxi/Escritorio/Thebridge/audio.mp3" >
</audio>
</body>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Para volver a la página anterior <a href="index.html" class="boton">Página anterior...</a>

</html>
93 changes: 93 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
<!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.0">
<title>Invoice Acme Billing Co.</title>
<style>
body{
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
font-size:10vw;
}
.sender-column {
text-align: left;
}

table,
th,
td {
border: 1px solid black;
border-collapse: collapse;
}

.color-fondo {
background-color: lightgray;
}
</style>
</head>

<body>
<table class="sender-column" style="width: 60%;">
<thead>
<tr class="color-fondo" style="height: 50px;">
<th colspan="3">Invoice #123456789</th>
<th><time datetime="2025-06-14">14 January 2025 </time></th>
</tr>
<tr style="height: 50px;">
<td colspan="2">
<a href="/home/auxi/Escritorio/Thebridge/html-pp-gimnasio/gatitos.html"> <strong>Pay
to:<br></strong></a>
Acme Billing Co.<br>
123 Main St.<br>
Cityville,NA 12345 <br>
</td>
<td colspan="2">
<strong>Customer:<br></strong>
John Smith<br>
321 Willow Way<br>
Southeast Northwestershire, MA 54321<br>
</td>
</thead>
<tbody>
<tr class="color-fondo" style="height: 50px;">
<td style="width: 20%;"><strong>Name / Description</strong></td>
<td style="width: 20%;"><strong>Qty</strong></td>
<td style="width: 20%;"><strong>&#64</strong></td>
<td style="width: 20%;"><strong>Cost.</strong> </td>
</tr>
<tr style="height: 50px;">
<td>Paperclips</td>
<td>1000</td>
<td>0.01</td>
<td>1.00</td>
</tr>
<tr style="height: 50px;">
<td>Staples (box)</td>
<td>100</td>
<td>1.00</td>
<td>100.00</td>
</tr>
<tr style="height: 50px;">
<td colspan="3" class="color-fondo">Subtotal </td>
<td>110.00 </td>

</tr>
<tr style="height: 50px;">
<td colspan="2" class="color-fondo">Tax </td>
<td>8&#37 </td>
<td>8.80</td>
</tr>
</tbody>
<tfoot>
<tr style="height: 50px;">
<td colspan="3" class="color-fondo">Grand Total </td>
<td>&#36 118.80 </td>
</tr>
</tfoot>
</table>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Para añadir el enlace a los gatitos a href="gatitos.html" class="boton">gatitos...</a>

</body>

</html>