<!DOCTYPE html>
<html>
<head>
<input type="button" value="Open website" onclick="open_website()">
<script>
function open_website()
{
window.open("http://www.workingframe.com/");
}
/*
run:
on button click, website will open in new tab
*/
</script>
</body>
</html>