Skip to content

Instantly share code, notes, and snippets.

View michaelkornblum's full-sized avatar

Michael Kornblum michaelkornblum

  • Bentonville, AR
View GitHub Profile
@michaelkornblum
michaelkornblum / semantic-html-ex5.html
Created May 13, 2019 22:09
Simple blogsite markup with Semantic HTML5 tags.
[...]
<div class="wrapper">
<header>
<h1>Logo</h1>
<nav>
<ul>
<li><a href="link-1.html">Link 1</a></li>
<li><a href="link-2.html">Link 2</a></li>
<li><a href="link-3.html">Link 3</a></li>
</ul>
```html
<!-- Example Four -->
[...]
<body>
<!-- The Wrapper is for stylistic purposes only. -->
<div class="wrapper">
<!-- The Banner is also for stylistic purposes only. -->
<div class="banner">
<h1>Logo</h1>
<!-- Site Navigation -->
@michaelkornblum
michaelkornblum / semantic-html-ex3.html
Last active May 13, 2019 21:25
website markup using divs
[...]
<h2>Michael's Shopping List</h2>
<ul>
<li>Butter</li>
<li>Eggs</li>
<li>Milk</li>
<li>Bread</li>
</ul>
<p class="call-to-action">
<!-- Example Two -->
[...]
<h2>Michael's Shopping List</h2>
<ul>
<li>Butter</li>
<li>Eggs</li>
<li>Milk</li>
<li>Bread</li>
</ul>
[...]
@michaelkornblum
michaelkornblum / semantic-html-ex1.html
Last active May 13, 2019 21:41
A simple HTML unordered list
[...]
<ul>
<li>Eggs</li>
<li>Milk</li>
<li>Butter</li>
<li>Bread</li>
</ul>
[...]