Antonio Pierro @antonio_pierro_
Per consigli, suggerimenti, eventuali errori o altro potete scrivere una email a antonio.pierro[at]gmail.com
<!DOCTYPE html>
<html>
<body>
This is my first web page
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>My first web page</title>
</head>
<body>
This is my first web page
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>My first web page</title>
</head>
<body>
<p>This is my first web page</p>
<p>How exciting</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>My first web page</title>
</head>
<body>
<p>This is my first web page</p>
<p>How exciting</p>
<p>first line<br>second line</p>
</body>
</html>
<ul>
<li>To learn HTML</li>
<li>To show off</li>
</ul>
<ol>
<li>To learn HTML</li>
<li>To show off</li>
</ol>
<h1>Heading level 1</h1>
<h2>Heading level 2</h2>
<h3>Heading level 3</h3>
<h4>Heading level 4</h4>
<h5>Heading level 5</h5>
<h6>Heading level 6</h6>
<a href="http://www.mozilla.com/">External Link</a>
<a href="mailto:nowhere@mozilla.org">Send email</a>
<img src="http://some-image.png" alt="my image" />
<a href="http://some-page.html">
<img src="http://some-image.png" alt="some image" />
</a>