Skip to content

Instantly share code, notes, and snippets.

@luigidon
Created August 22, 2016 16:16
Show Gist options
  • Save luigidon/ddf1b5ebae60e2b6a54a9b673f4c47a0 to your computer and use it in GitHub Desktop.
Save luigidon/ddf1b5ebae60e2b6a54a9b673f4c47a0 to your computer and use it in GitHub Desktop.
SmartNinja First HTML
<!DOCTYPE html>
<html lang="si">
<head>
<meta charset="UTF-8">
<meta name="author" content="Matjaž Gerčar"
<title>Moja žblj spletna stran</title>
</head>
<body>
Moje ime je <strong>Matjaž</strong><br>
<img src="zur_30let.jpg" width="200px" /> <br >
<a href="http://www.rtvslo.si">Povezava</a>
<table border="1px">
<tr>
<td>Prvi stolpec</td>
<td>Drugi stolpec</td>
</tr>
<tr>
<td>Prvi stolpec A</td>
<td>Drugi stolpec B</td>
</tr>
</table>
<ul>
<li>Pizza</li>
<li>Čevapčiči</li>
</ul>
<ol>
<li>Sok</li>
<li>PIvo</li>
</ol>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment