Skip to content

Commit

Permalink
add html b00tc4mp#7
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelpg91 committed Oct 16, 2024
1 parent f71ebbf commit 913ab87
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion staff/miguel-penosa/playground/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,40 @@ <h1> HTML</h1>
</ol>

<h2>Links</h2>
<a href="https://www.google.com/"></a>
<a href="https://www.google.com/"> Google (same page)</a>
<a href="https://www.google.com/" target="_blank"> Google (new page)</a>

<h2> Texts</h2>
text <br> break
<b> Bold</b>
<i> Italic</i>
<h2> Tables</h2>
<table border="1" cellpadding="10" cellspacing="0">
<tr>
<th>Name</th>
<th>Surname</th>
<th>Country</th>
</tr>
<tr>
<td>Juan</td>
<td>28</td>
<td>España</td>
</tr>
<tr>
<td>Maria</td>
<td>32</td>
<td>México</td>
</tr>
<tr>
<td>Luis</td>
<td>25</td>
<td>Italia</td>
</tr>
</table>

<h3>Images</h3>

<img src=https://i.pinimg.com/736x/af/36/ea/af36ea5f33f25737552b9fda02636f41.jpg alt="Imagen de ejemplo">
</body>

</html>

0 comments on commit 913ab87

Please sign in to comment.