Skip to content

Instantly share code, notes, and snippets.

@leibrug
leibrug / minimum-html-list.html
Last active February 6, 2018 17:43
Example code from my blog post about Minimum HTML markup: http://leibrug.pl/minimum-html
<ol>
<li>Veni
<li>Vidi
<li>Vici
</ol>
@leibrug
leibrug / minimum-html-select.html
Last active February 6, 2018 17:44
Example code from my blog post about Minimum HTML markup: http://leibrug.pl/minimum-html
<select>
<optgroup label="Cars">
<option>Noble
<option>Ultima
<optgroup label="Motorcycles">
<option>Triumph
<option>Ducati
</select>
@leibrug
leibrug / minimum-html-table.html
Last active February 6, 2018 17:44
Example code from my blog post about Minimum HTML markup: http://leibrug.pl/minimum-html
<table>
<thead>
<tr>
<th>Name
<th>Surname
<tbody>
<tr>
<td>John
<td>Smith
<tr>
@leibrug
leibrug / minimum-html-document.html
Last active February 6, 2018 17:43
Example code from my blog post about Minimum HTML markup: http://leibrug.pl/minimum-html
<!doctype html>
<meta charset="utf-8">
<title>Minimum HTML</title>
<p>I'm a paragraph.
<p>End of body, now.
@leibrug
leibrug / jaws-form.html
Last active February 6, 2018 17:45
Example HTML form being read uncorrectly by IE + JAWS - see http://leibrug.pl/when-jaws-wont-read-form-labels-on-ie
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Test form</title>
</head>
<body>
<form role="form" name="form" id="form" novalidate method="post" action="jaws-form.html">
<h2>Test form</h2>
<div>