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
31 changes: 31 additions & 0 deletions 00-HTML-CSS-basics/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!doctype html>

<html lang="en">
<head>
<meta charset="utf-8">

<title>Topic 00</title> <!-- all set, first exercise done! xD -->
<meta name="description" content="Exercises">
<meta name="author" content="Martin Aranda">
</head>

<body>
<header>
<div>
<div>
<h1>My todo list!</h1> <!-- exercise two completed. -->
</div>
<div>
<ul> <!-- Making a list. Check! -->
<li>Make projects</li>
<li>Complete exercises</li>
<li>Show it to my tutors</li>
<li>go to the offices</li>
<li>relax and chill</li>
</ul>
</div>
</div>
</header>

</body>
</html>
55 changes: 55 additions & 0 deletions 00-HTML-CSS-basics/tables.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!doctype html>

<html lang="en">
<head>
<meta charset="utf-8">

<title>Topic 00</title>
<meta name="description" content="Exercises">
<meta name="author" content="Martin Aranda">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>

<body>

Copy link

Choose a reason for hiding this comment

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

fixear indentacion

<table> <!-- Forth exercise done. Boy, you're on a roll -->
<tr>
<th>Month</th>
<th>Rent</th>
<th>groseries</th>
</tr>
<tr>
<td>january</td>
<td>7000</td>
<td>2302</td>
</tr>
<tr>
<td>february</td>
<td>7000</td>
<td>2278</td>
</tr>
<tr>
<td>march</td>
<td>7000</td>
<td>2304</td>
</tr>
<tr>
<td>april</td>
<td>7000</td>
<td>2650</td>
</tr>
<tr>
<td>may</td>
<td>7000</td>
<td>1708</td>
</tr>
<tr>
<td>june</td>
<td>7000</td>
<td>2134</td>
</tr>
</table>
</table>

</body>
</html>