HTML — Responsive Web Design
Use the <meta viewport>
and CSS techniques like flexbox and media queries to make websites mobile-friendly.
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<style>
@media (max-width: 600px) {
body { background: lightblue; }
}
</style>