Yes, you can do that.
Create a new view controller and add a UIWebView to it. Then add the Website files to your project. Given that webView is an instance variable of your view controller, you can use
Code:
-(void) viewDidLoad {
// Load the html file
NSString *path = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"];
NSString *html = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
[self.webView loadHTMLString:html baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle]bundlePath]]];
}
Hope this helps.
Cheers,
Bob