I create a .html in my angular application
.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div>
<p>TEST</p>
</div>
</body>
</html>
I want to know if it's possible in an angular component to show in a div for example the content of the .html file
It will look like this :
<h1>Manual</h1>
<div>
// HTML CONTENT
</div>