Manish Kumar
Manish Kumar

Reputation: 1

How can i create a new html page with the name of title, by using forms in HTML

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

Answers (1)

Lea Krause
Lea Krause

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

Related Questions