tags:

views:

74

answers:

2

I have an HTML static page how i can show it in a div ?

A: 

You might want to take a look at this previous question on stackoverflow.

Alternatively, frinity has an easy tutorial on how to do this.

sthg
+1  A: 

If you can include jQuery, then the task will be very simple.

$("#your-div-id").load("static.html");
Makram Saleh