Initial commit of a index.html

This commit is contained in:
Ivan Hörler 2016-12-11 22:52:49 +01:00
parent 485bf241af
commit c757504152
1 changed files with 29 additions and 0 deletions

29
Website/index.html Normal file
View File

@ -0,0 +1,29 @@
<!DOCTYPE HTML>
<meta charset="UTF-8">
<html>
<head></head>
<body>
<header>
<h1> Most important heading </h1>
<h3> Less important heading </h3>
</header>
<nav>
<ul>
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
</ul>
</nav>
<article>
<h1>The article title</h1>
<p>Contents of the article element </p>
</article>
<article>
<h1>A new article</h1>
<section>
<h1>Heading</h1>
<p>content or image</p>
</section>
</article>
<footer></footer>
</body>
</html>