<!-- index.html --> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Embedded Webpage</title> | |
</head> | |
<body> | |
<h1>Embedded Webpage Example</h1> | |
<iframe src="https://google.com" width="100%" height="100%"></iframe> | |
</body> | |
</html> | |