anonymous added on 2021-10-06 19:43:06:
As an example the main window will not display data from other target sources:
Following is index.htm
<!DOCTYPE html>
<html>
<body>
<h2>CrowdStrike Project Updates</h2>
<iframe src="servers.htm" height="200" width="300" title="Servers"></iframe>
<iframe src="workstations.htm" height="200" width="300" title="Workstations"></iframe>
<iframe src="mobile.htm" height="200" width="300" title="Mobile"></iframe>
</body>
</html>
Eg: servers.htm
<!DOCTYPE html>
<html>
<body>
<h2>Server Schedule</h2>
</html>
|