Skip to content

Instantly share code, notes, and snippets.

@RichOrElse
Last active September 8, 2020 02:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RichOrElse/e71016f36b931fc60222e7515c897ef0 to your computer and use it in GitHub Desktop.
Save RichOrElse/e71016f36b931fc60222e7515c897ef0 to your computer and use it in GitHub Desktop.
CSS & HTML examples
img {
max-width: 100%
height: auto;
}
<html>
<head>
<link rel="preload" href="/assets/css/application.css" as="style">
</head>
<body>
<img loading="eager" src="pic.png" />
<picture>
<source srcset="img/01.webp" type="image/webp">
<img loading="lazy" src="pic.png" alt="">
</picture>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment