<applet>
- Defines an embedded applet
- Not supported in HTML5 Use <embed> or <object> in CSS instead
<embed>
- Defines a container for an external resource
- Most browsers no longer support Java Applets and Plug-ins.
- ActiveX controls are no longer supported in any browsers.
- The support for Shockwave Flash has also been turned off in modern browsers.
- It is suggested:
- To display a picture, it is better to use the <img> tag.
- To display HTML, it is better to use the <iframe> tag.
- To display video or audio, it is better to use the <video> and <audio> tags.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Video embed </title>
<link href="mystyle2.css" rel="stylesheet" type="text/css">
</head>
<body>
<iframe width="560" height="315" src="https://www.youtube.com/embed/ptzi4ZrkiJE?si=m1bIUdV-Wzt5Bthy" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</body>
</html>
<embed> Results
<>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Embed element image </title>
<link href="mystyle2.css" rel="stylesheet" type="text/css">
</head>
<body>
</body>
</html>
Results
< >
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Basic HTML</title>
<link href="mystyle2.css" rel="stylesheet" type="text/css">
</head>
<body>
</body>
</html>
Results
<object>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Basic HTML</title>
<link href="mystyle2.css" rel="stylesheet" type="text/css">
</head>
<body
</body>
</html>
<object> Results
<param>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Basic HTML</title>
<link href="mystyle2.css" rel="stylesheet" type="text/css">
</head>
<body>
</body>
</html>