Questions tagged [html5]
HTML5 is a language for structuring and presenting content for the World Wide Web, a core technology of the Internet. It is the latest revision of the HTML standard and currently remains under development.
90 questions
2
votes
1
answer
366
views
Is it Okay to skip heading levels in html structure?
Is it okay to skip heading levels for example h2 to h4, or h1 to h3. are there any implications in SEO, does it impact site ranking or indexing, and why do some developers skip heading levels?
Are ...
2
votes
1
answer
74
views
Values on alt tags for accessibility
We're working on an online report that uses a lot of graph charts, all of them as images (eg not interactive). I know best practices for alt tags, but was wondering if adding the data of the graph ...
2
votes
2
answers
320
views
How do you display long file paths in a web app?
I'm working on a website that allows the user to upload two files from a remote computer and displays the file paths as a confirmation. However, if the file paths are long, the card that holds the ...
1
vote
2
answers
1k
views
HTML input of type color has no empty state
The HTML input of type color has no empty state. Therefore it always shows a selected color. What would be the best way to convey to the user that they have to select a color.
I restyled the color ...
0
votes
2
answers
450
views
What tag should you use for the title of a "fixed" dialog? (cookie consent banner, subscribe to notifications, etc.)
For "fixed" dialogs displayed over the page, like a "cookie consent banner" or "subscribe to notifications", what is the recommended tag for the title (e.g. "Your ...
1
vote
1
answer
621
views
Should I override controls so that it handle different locale's or let the browser handle it?
Similar to A good solution how to localize and let user choose language on HTML page
but I am specifically wondering about localization of control elements such as required on input or date fields.
...
2
votes
2
answers
922
views
Do users actually use the arrows in <input type="number">?
Does the average user actually use these really tiny arrows?
2
votes
1
answer
88
views
Wcag 2.1 Success criteria-1.3.6
I am unable to understand the examples available on w3.org, which are:
The links in the navigation of a website are marked up so that users can add their own icons.
Icons on a website are marked up so ...
0
votes
1
answer
71
views
Feedback on my document management system [closed]
I've created a document management system and want to make the table look more stylish.
https://codepen.io/reonLOW/pen/abbbMrZ
1
vote
4
answers
236
views
How to solve UX vs screen reader accessibility problem?
I'm learning web-development and semantic html markup. Recently a tutorial suggested that because "Click here" or "Read more" anchor texts are not so descriptive to visually impaired users depending ...
0
votes
2
answers
147
views
Do HTML5 browsers have to be able to properly process HTML4 tags when the tags appear in HTML5 pages? [closed]
According to the post here, the HTML5 specification requires HTML5 browsers to be able to properly process HTML4 tags when they are in HTML5 pages.
Unfortunately, the post doesn't very well ...
3
votes
1
answer
5k
views
Need explanation how Clear input button accessibility works
I've a text input with a clear button (looks like "x"). When clicked, this button will remove all the text from the input:
The markup for this looks like:
<label for="first-name">First name&...
2
votes
2
answers
5k
views
For Screen Readers: How to markup a group of text items to be read as one item? Should I even try?
How might I mark up the following component in accordance with WCAG 2.1 guidelines, accessibility best practices, and with as much assistive technology compatibility as possible (I don't want to ...
1
vote
1
answer
5k
views
Is a label-tag inside a button-tag valid and / or has any UX- / ergonomic-reasons?
I am checking an application and I found this in HTML DOM:
<button type="submit">
<label>Submit</label>
</button>
I have never seen this before and asking myself if this is ...
1
vote
1
answer
656
views
Where should keyboard focus after closing a dialog with the button opening the dialog removed?
In the UI design, each item panel contains a remove button. If clicking the remove button, a confirmation dialog would prompt. If cancel, the keyboard would focus back to the remove button. If confirm,...