Skip to content

Commit

Permalink
add html folder and index.html b00tc4mp#8
Browse files Browse the repository at this point in the history
  • Loading branch information
frameloop committed Oct 9, 2024
1 parent 5e170f7 commit 59c7df9
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions staff/quique-cabrera/playground/html/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML</title>
</head>

<body>
<h1>HTML</h1>
<h2>Lists</h2>

<ul>
<li>Red</li>
<li>Green</li>
<li>Blue</li>
</ul>

<ol>
<li>Barça</li>
<li>Madrid</li>
<li>Atletic</li>
</ol>

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

<h2>Text</h2>

Text<br>Break

<b>Bold</b>
<i>Italic</i>

<h2>Table</h2>
<table>
<tr>
<th>Name</th>
<th>Surname</th>
</tr>
<tr>
<td>Peter</td>
<td>Pan</td>
</tr>
<tr>
<td>Wendy</td>
<td>Darling</td>
</tr>
</table>

<!--TODO add more html elements examples-->

</body>

</html>

0 comments on commit 59c7df9

Please sign in to comment.