Last active
April 22, 2020 22:14
-
-
Save MicBrain/5c16d35ea99d2a241e97aa8ff9294ece to your computer and use it in GitHub Desktop.
The standard HTML5 page structure.
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> | |
<!--To get more Meta Tags visit here: https://gist.github.com/MicBrain/46a9723158307fd30db66a4b2af85411 --> | |
<meta charset="utf-8"> | |
<meta http-equiv="content-type" content="text/html"> | |
<title> The name of your website. </title> | |
</head> | |
<body> | |
<header> | |
<nav> | |
<ul> | |
<li> Put your Website MENU here. </li> | |
</ul> | |
</nav> | |
</header> | |
<section> | |
<article> | |
<header> | |
<h2>The title of Article 1</h2> | |
<p> Content of Article 1.</p> | |
</header> | |
<header> | |
<h2>The title of Article 2</h2> | |
<p> Content of Article 2.</p> | |
</header> | |
</article> | |
</section> | |
<aside> | |
<h2> Section Tite. </h2> | |
<p> Content of the section. </p> | |
</aside> | |
<footer> | |
<p>Copyright @year @name</p> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice and simple