Skip to content

Instantly share code, notes, and snippets.

@abhishekjakhar
Created October 14, 2018 08:17
Show Gist options
  • Save abhishekjakhar/e30d68c2240405b66f7c5841f026335e to your computer and use it in GitHub Desktop.
Save abhishekjakhar/e30d68c2240405b66f7c5841f026335e to your computer and use it in GitHub Desktop.
HTML Layout (Without Semantic)
<!DOCTYPE html>
<html>
<head>
<title>HTML - A short guide</title>
</head>
<body>
<h1>HTML - A short guide</h1>
<p>A simple blog about learning HTML</p>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
<h2>Basics of HTML</h2>
<h3>What is HTML ?</h3>
<p>Hypertext Markup Language (HTML) is the standard markup language for creating web pages and web applications.</p>
<a href="#">Read more</a>
<h3>What are HTML elements ?</h3>
<p>HTML elements are the building blocks of HTML pages. With HTML constructs, images and other objects such as interactive forms may be embedded into the rendered page.</p>
<a href="#">Read more</a>
<p>&copy;2018 HTML - A short guide</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment