<body>
<section>
<h2>Atrybut "disabled"</h2>
<button>Aktywny</button>
<button disabled>Zablokowany</button>
</section>
<section>
<h2>Atrybut "value"</h2>
<meter></meter>
<meter value="0.3"></meter>
<meter value="1"></meter>
</section>
<section>
<h2>Atrybut "hidden"</h2>
<span>Widoczny tekst</span>
<span hidden>Ukryty tekst</span>
</section>
<section>
<h2>Atrybut "type"</h2>
<input />
<input type="number" />
<input type="date" />
<input type="file" />
</section>
<section>
<h2>Atrybut "placeholder"</h2>
<input placeholder="Podaj imię..." />
</section>
</body>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.