can you show anormal html page in webix popup or window

I want to show the html page(card details in html) when some clicks on the tasks of the kanban board.

please I need some help concerning this
this is my popup view part of the code … I want to display another web page maybe card.html.
webix.ui({
view:“popup”,
height:250,
width:300,
left:50, top:50,
head:“My Window”,
body:{
template:“Some text” //here u will ur card details
}
}).show();

The card.html page is not webix widget… i just want to navigate to this page.

this is goldsoft!!!

Name:
thank you in advance

use iframe as popup body: https://docs.webix.com/api__refs__ui.iframe.html
or set url parameter of template, if your page is plain html https://docs.webix.com/api__link__ui.template_url_config.html

thanx i shall try using it and see the results