Part 1
- b
- c
- b
- c
- e
- b
- a
- c
Part 2
<img src="img/cat/cat.png" width="300px" height="550px" title="Just a cat" alt="Imaginea nu a putut fi gasita" />
<!DOCTYPE html>
<html>
<head>
<title> Lista de speakeri </title>
</head>
<body>
<h2> Lista de speakeri </h2> <!-- dimensiunea de la header nu conteaza -->
<table border="1">
<tr>
<th>Nume</th>
<th>Companie</th>
<th>Tara</th>
</tr>
<tr>
<td>Silvia Banu</td>
<td>Google</td>
<td>Germania</td>
</tr>
<tr>
<td>Mike Phill</td>
<td>Facebook</td>
<td rowspan="2">Anglia</td>
</tr>
<tr>
<td>Ernst Handel</td>
<td rowspan="2">Amazon</td>
</tr>
<tr>
<td>Giovanni Rovelli</td>
<td>Italia</td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title> Lucruri de facut </title>
</head>
<body>
<h1> TODO </h1>
<ol>
<li type="1"> Tema informatica</li>
<li type="a"> Tema matematica </li>
<li type="none"> Updatat CV </li>
<li type="I"> Voluntariat </li>
<li type="none"> Tenis </li>
<li type="A"> Citit </li>
</ol>
<ul>
<li type="circle"> Hranit hamster </li>
<li type="none"> Desenat </li>
<li type="disc"> Plimbare parc </li>
<li type="square"> Mancat pizza </li>
</ul>
</body>
</html>