惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
U
Unit 42
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
IT之家
IT之家
MyScale Blog
MyScale Blog
V
Visual Studio Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
I
InfoQ
博客园 - 司徒正美

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
HTML Attributes That Do More Than You Think
Muhammad Usm · 2026-04-30 · via DEV Community

Two developers build the same page. Same images, same form, same content. One loads faster, scores better on Core Web Vitals, and feels smoother on mobile. The other does not.

The difference is four HTML attributes. Each one takes about thirty seconds to add. Each one has a real, measurable impact on the people using your page.

Here is what they do and how to use them right.

Here are the exact code examples:

loading

By default, the browser fetches every image it finds in your HTML immediately, even the ones three screens below the fold that the user may never reach. On pages with many images, that is a lot of wasted bandwidth upfront.

The loading attribute changes this.

<!-- Loads immediately -->
<img src="hero.jpg" alt="Hero" loading="eager">

Enter fullscreen mode Exit fullscreen mode

<!-- Waits until the user scrolls near it -->
<img src="article-photo.jpg" alt="Photo" loading="lazy">

Enter fullscreen mode Exit fullscreen mode

<!-- Works on iframes too -->
<iframe src="map.html" title="Map" loading="lazy"></iframe>

Enter fullscreen mode Exit fullscreen mode

loading="lazy" defers the request until the user is actually close to that element. If they never scroll there, the request never happens.

One thing to be careful about. Never use loading="lazy" on images visible when the page first opens. Those images should load immediately. Deferring them increases your Largest Contentful Paint time, which affects both user experience and search rankings.

The rule is simple. Above the fold gets eager or nothing. Below the fold gets lazy.

<!-- Hero. Load it right away. -->
<img src="hero.jpg" alt="Hero" loading="eager" width="1200" height="600">

Enter fullscreen mode Exit fullscreen mode

<!-- Further down the page. Let it wait. -->
<img src="section-photo.jpg" alt="Photo" loading="lazy" width="800" height="500">

Enter fullscreen mode Exit fullscreen mode

Always include width and height with lazy loaded images. Without them, the layout shifts when the image arrives, which is jarring for users and hurts your Cumulative Layout Shift score.

fetchpriority

The browser assigns a priority to every resource it loads. Stylesheets are high priority because they block rendering. Images are low priority by default because most of them are below the fold.

The problem is your hero image is also low priority by default, even though it is the most important thing on the page.

fetchpriority lets you correct that.

<!-- Tell the browser this image matters more than other images -->
<img src="hero.jpg" alt="Hero" fetchpriority="high">

Enter fullscreen mode Exit fullscreen mode

<!-- This script is not critical, let it wait -->
<script src="analytics.js" fetchpriority="low" defer></script>

Enter fullscreen mode Exit fullscreen mode

<!-- Works on preloads too -->
<link rel="preload" href="hero.jpg" as="image" fetchpriority="high">

Enter fullscreen mode Exit fullscreen mode

The most impactful use is on your LCP image. Adding fetchpriority="high" moves it to the front of the loading queue from the very start instead of sitting behind fonts and scripts that got there first.

<img  src="hero.jpg"  alt="Hero"  fetchpriority="high"  loading="eager"  width="1200"  height="600">

Enter fullscreen mode Exit fullscreen mode

fetchpriority="high" and loading="eager" are doing different things here. eager means do not defer this image. fetchpriority="high" means when competing with other resources for bandwidth, this one goes first. Both belong on your hero image.

The low value is useful when you are preloading something that is not needed for the initial render and you do not want it competing with resources that are.

<link rel="preload" href="secondary-font.woff2" as="font" fetchpriority="low" crossorigin>

Enter fullscreen mode Exit fullscreen mode

This attribute became fully supported across all major browsers in October 2024 and works as a hint, meaning the browser will respect it when it can and use its own judgment when needed.

autocomplete

The autocomplete attribute tells the browser what kind of data lives in a field. When the browser knows this, it can offer the right saved value instantly, whether that is a saved address, a credit card number, or login credentials.

Most developers know it accepts on and off. What is less known is that it accepts over 50 specific values, each one mapping to a particular type of information.

<!-- Personal details -->
<input type="text" autocomplete="given-name" placeholder="First name">
<input type="text" autocomplete="family-name" placeholder="Last name">
<input type="email" autocomplete="email" placeholder="Email"><input type="tel" autocomplete="tel" placeholder="Phone">

Enter fullscreen mode Exit fullscreen mode

<!-- Address -->
<input type="text" autocomplete="street-address" placeholder="Street address">
<input type="text" autocomplete="postal-code" placeholder="Postal code">
<input type="text" autocomplete="country" placeholder="Country">

Enter fullscreen mode Exit fullscreen mode

<!-- Payment -->
<input type="text" autocomplete="cc-name" placeholder="Name on card">
<input type="text" autocomplete="cc-number" placeholder="Card number">
<input type="text" autocomplete="cc-exp" placeholder="Expiry">
<input type="text" autocomplete="cc-csc" placeholder="CVV">

Enter fullscreen mode Exit fullscreen mode

<!-- Login -->
<input type="text" autocomplete="username" placeholder="Username">
<input type="password" autocomplete="current-password" placeholder="Password">
<input type="password" autocomplete="new-password" placeholder="Create a password">

Enter fullscreen mode Exit fullscreen mode

current-password and new-password are worth understanding separately. current-password tells the browser the user is entering an existing password, so it offers saved credentials. new-password tells it the user is creating one, so it offers to generate a strong password instead. One value, completely different behavior.

For one-time verification codes there is a dedicated value:

<input  type="text"  autocomplete="one-time-code"  inputmode="numeric"  maxlength="6">

Enter fullscreen mode Exit fullscreen mode

On iOS, when this is set and an SMS with a code arrives, the keyboard automatically surfaces a one-tap option to fill it in. That entire copy-and-paste flow collapses into a single tap because the browser understands what the field needs.

inputmode

When a user taps an input on mobile, a keyboard appears. Which keyboard appears is something you can control.

inputmode tells the browser which virtual keyboard to show. It does not change validation or field behavior, only the keyboard. This makes it more flexible than changing the type attribute, which affects both.

<!-- Digits only, without type="number" side effects -->
<input type="text" inputmode="numeric">

Enter fullscreen mode Exit fullscreen mode

<!-- Digits plus decimal point, right for prices -->
<input type="text" inputmode="decimal">

Enter fullscreen mode Exit fullscreen mode

<!-- Telephone keypad with * and # -->
<input type="text" inputmode="tel">

Enter fullscreen mode Exit fullscreen mode

<!-- Email keyboard with @ shortcut -->
<input type="email" inputmode="email">

Enter fullscreen mode Exit fullscreen mode

<!-- URL keyboard with / and .com -->
<input type="text" inputmode="url">

Enter fullscreen mode Exit fullscreen mode

<!-- Search keyboard, enter key labeled Search --><input type="search" inputmode="search">

Enter fullscreen mode Exit fullscreen mode

numeric and decimal are the ones people mix up most often. numeric shows digits 0 to 9 only. decimal adds a decimal separator. Use decimal for prices and measurements, numeric for PINs, postal codes, and verification codes.

Here is what a complete credit card field looks like when autocomplete and inputmode work together:

<input  type="text"  autocomplete="cc-number"  inputmode="numeric"  pattern="[0-9\s]{13,19}"  placeholder="1234 5678 9012 3456">

Enter fullscreen mode Exit fullscreen mode

Each attribute has a specific job. autocomplete tells the browser what the field collects. inputmode shows the right keyboard. pattern handles validation. None of them overlap.

The same approach applies to an OTP field:

<input  type="text"  autocomplete="one-time-code"  inputmode="numeric"  maxlength="6"  pattern="\d{6}">

Enter fullscreen mode Exit fullscreen mode

On iOS this combination triggers automatic SMS code detection. A flow that used to require switching apps and copying a code becomes one tap. The attributes are doing all the work.

What connects all four

None of them need JavaScript. None of them change how your page looks. They are pieces of information you give the browser so it can make better decisions for your users.

loading controls when a resource is fetched. fetchpriority controls how urgently it is fetched. autocomplete tells the browser what data a field expects. inputmode tells it which keyboard fits that data.

Small additions. Real impact.

The WHATWG Living Standard lists every valid *`*autocomplete`* value. If you build forms regularly, the full list is worth a look.*


Did you learn something good today as a developer?
Then show some love.
© Muhammad Usman
WordPress Developer | Website Strategist | SEO Specialist
Don’t forget to subscribe to Developer’s Journey to show your support.
Developer's Journey