Base64 is a binary-to-text encoding scheme that converts binary data into an ASCII string format using a set of 64 characters (A-Z, a-z, 0-9, +, /). It is commonly used in HTML to embed binary data directly within text-based formats, such as embedding images or other media in web pages.
data:
URLs, which can be used in src
attributes of <img>
tags or in CSS background-image
properties.Here is an example of embedding a small image using Base64 in an HTML document:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Base64 Example</title>
</head>
<body>
<h1>Base64 Image Example</h1>
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA
AAAFCAYAAACNbyblAAAAHElEQVQI12P4
//8/w38GIAXDIBKE0DHxgljNBAAO
9TXL0Y4OHwAAAABJRU5ErkJggg==" alt="Red dot">
</body>
</html>