Last active
December 21, 2017 20:52
-
-
Save StellarStoic/2729f02449060e5ce58c7fd94cff3966 to your computer and use it in GitHub Desktop.
My first html code...
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>MojaStran</title> | |
</head> | |
<body> | |
<p>moja prva spletna stran</p> | |
<br> | |
<p>moj <b><a href="www.google.com" title="moja prva povezava">prvi </a></b> <br>odstavek</p> | |
<p><b>Moj</b> drugi odstavek</p> | |
<h1>Naslov</h1> | |
<h2>Naslov</h2> | |
<h3>NAslov</h3> | |
<a href="http://google.si"> | |
<img src="https://www.dnevnik.si/i/otfl/2017/12/10/1059298.jpg" height="300" width="400" alt="dnevnik"> | |
</a> | |
<ol> | |
<li>stvar1</li> | |
<li>stvar2</li> | |
</ol> | |
<table> | |
<tr><td>celica1</td><td>celica2</td></tr> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment