Using favicons for your website or web application is a nice and handy thing.
- Search the internet for a favicon generator
- Add your image and let it create you a bundle of favicons
Using favicons for your website or web application is a nice and handy thing.
To adjust the theme color of your website on a mobile phone, just add the following meta tag to your HTML <head>:
<meta name="theme-color" content="#000000">
The color given in “content” will be used as theme color of your website.
Create beautiful backgrounds or forms you need with the <svg> tag using the viewBox:
viewBox values: “ min-width min-height width height ”
<svg viewBox="0 0 2000 280" preserveAspectRatio="none" width="100%" height="280">
<polygon points="0,280 2000,280 2000,20"
style="fill:#f9f0e6; opacity: .65"/>
</svg>
To make the label of a checkbox or radio button clickable, you can either -
<label><input type="checkbox" name="checkbox" value="value">some text</label>
<input type="checkbox" name="checkbox" id="checkbox_id" value="value">
<label for="checkbox_id">some text</label>