Created
November 5, 2018 17:26
-
-
Save rokj/b58625df4ebfc5ae7c3332d401b3a798 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Moja prva spletna stran</title> | |
</head> | |
<body> | |
To je moje <strong>prvo besedilo</strong> | |
<br> | |
<a href="http://www.rtvslo.si" target="_blank">Novice</a> | |
<p>To je moje drugo besedilo</p> | |
<p>To je moje tretje besedilo </p> | |
<h1>to je moj velik naslov</h1> | |
<h2>to je moj malo manjsi naslov</h2> | |
<h3>to je moj se malo manjsi naslov</h3> | |
<hr> | |
<input> | |
<table border="1"> | |
<tr> | |
<td>1</td> | |
<td>Prvo polje</td> | |
<td>Drugo polje</td> | |
<td>Tretje polje</td> | |
</tr> | |
<tr> | |
<td>2</td> | |
<td>Prvo polje</td> | |
<td>Drugo polje</td> | |
<td>Tretje polje</td> | |
</tr> | |
</table> | |
<img src="https://images.unsplash.com/photo-1449130015084-2d48a345ae62?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=bb29652e99f70314468e31f729b28f74&w=1000&q=80" /> | |
<ul> | |
<li>1 element</li> | |
<li>2 element</li> | |
<li>3 element</li> | |
</ul> | |
<ol> | |
<li>1 element</li> | |
<li>2 element</li> | |
<li>3 element</li> | |
</ol> | |
<div> | |
to je moja vsebina | |
<div>se ena vsebina</div> | |
<div>se tretja vsebina</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment