JSFiddle - React, Tailwind, and code Playground
by bnickel
HTML
<h1>Tests</h1>
<h2><img alt title></h2>
<img src="https://www.google.com/images/srpr/logo3w.png" alt="Alt text" title="Title text">
<h2><input type="image" alt title></h2>
<input type="image" src="https://www.google.com/images/srpr/logo3w.png" alt="Alt text" title="Title text">
<h2><input type="checkbox" title></h2>
<input type="checkbox" title="Title text">
<h2><input type="radio" title></h2>
<input type="radio" title="Title text">
<h2><input type="text" value title></h2>
<input type="text" title="Title text" value="Value text">
<h2><select title></h2>
<select title="Title text">
<option title="Title text">Option with title text</option>
<option>Option without title text</option>
</select>
<h2><textarea title /></h2>
<textarea title="Title text">
Value text
</textarea>
<h2><div title></h2>
<div title="Title text">Body text</div>
<h2><div aria-label></h2>
<div title="Title text" aria-label="Label text">Body text</div>
<h2><div aria-labelledby></h2>
<div title="Title text" aria-labelledby="label-element">Body text</div>
<div id="label-element" style="display:none">Label text</div>
CSS
h1 {
font-weight: bold;
font-size: 1.5em;
margin-top: 0.5em;
}
h2 {
font-weight: bold;
font-size: 1.25em;
margin-top: 0.5em;
}