Skip to content

Commit

Permalink
add html folder and index.html b00tc4mp#7
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelpg91 committed Oct 10, 2024
1 parent d552829 commit f71ebbf
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions staff/miguel-penosa/playground/html/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">

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

<body>
<h1> HTML</h1>

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

<ol>
<li>Barcelona</li>
<li>Madrid</li>
<li>Atléti</li>
</ol>

<h2>Links</h2>
<a href="https://www.google.com/"></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>
</body>

</html>

0 comments on commit f71ebbf

Please sign in to comment.