Reputation: 1
how to create a new html page by using forms in HTML or javascript. I want to use the title for the page name and url..
Upvotes: 0
Views: 46
Reputation: 432
If i understand correctly, this is what you need to do for i title.
<!DOCTYPE html>
<html>
<head>
<title>HTML Reference</title>
</head>
<body>
The content of the document......
</body>
</html>
Upvotes: 1