-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
64 additions
and
1 deletion.
There are no files selected for viewing
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
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 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>© 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> |