Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
mrworm authored Jan 18, 2024
1 parent fde1729 commit 01cd38a
Showing 1 changed file with 64 additions and 1 deletion.
65 changes: 64 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,64 @@
Hello World
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="canonical" href="https://html5-templates.com/" />
<title>Responsive HTML5 Page Layout Template</title>
<meta name="description" content="Simple HTML5 Page layout template with header, footer, sidebar etc.">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>

<body>
<header>
<div id="logo"><img src="/logo.png">HTML5&nbsp;Layout</div>
<nav>
<ul>
<li><a href="/">Home</a>
<li><a href="https://github.com/mrworm">github</a>
<li><a href="https://groups.google.com/g/py4web">py4web</a>
<li><a href="https://www.home-assistant.io/">home assistant</a>
</ul>
</nav>
</header>
<section>
<strong>Welcome to my small part of the web</strong>
</section>
<section id="pageContent">
<main role="main">
<article>
<h2>Python</h2>
<p>Im mostly developing in Python, HTML and JSS. Basicly learnig is a life long process and i'm still trying to grasp it.</p>
</article>
<article>
<h2>Home assistant</h2>
<p>Im spending some time with home assistant since it does keep my electric bill way smaller than it would be other wise .</p>
</article>
<article>
<h2>py4web</h2>
<p>Learnig web technologies can never be a waste of time and a rapid development frame work like py4web suits my needs perfectly. Did I mention that its MVC and have a lot of cool feature and the community is super friendly.</p>
</article>
<article>
<h2>Boats</h2>
<p>You need to have some spare time and that is spent on the sea, at the sea or talking about the sea.</p>
</article>
</main>
<aside>
<div>Sidebar 1</div>
<div>Sidebar 2</div>
<div>Sidebar 3</div>
</aside>
</section>
<footer>
<p>&copy; You can copy, edit and publish this template but please leave a link to our website | <a href="https://html5-templates.com/" target="_blank" rel="nofollow">HTML5 Templates</a></p>
<address>
Contact: <a href="mailto:me@example.com">Mail me</a>
</address>
</footer>


</body>

</html>

0 comments on commit 01cd38a

Please sign in to comment.