iFrame Of HTML
- The Iframe is used to display a webpage within a webpage.
- The Iframes specifies an inline frame.
- An Iframe is basically used to show a website a webpage inside the current webpage.
- <iframe src="url"><iframe>
- Syntax Of Iframe: <iframe src="url" title="description">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML iframe Example</title>
</head>
<body>
<div>
<iframe src="https://needspot.sarolainfotech.com/" frameborder="0"></iframe>
</div>
</body>
</html>