Picture Element
HTML
Easy
3 views
Problem Description
Create a picture element with one source 'banner.webp' and fallback 'banner.jpg'.
Output Format
Print the HTML code.
Constraints
Use picture, source, img.
Official Solution
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>\
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>meetcode</title>
</head>
<body>
<picture>
<source srcset='banner.webp' type='image/webp'>
<img src='banner.jpg' alt='meetcode banner'>
</picture>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!