Answers for "how to create a new page in html"

0

html new page

<!DOCTYPE html>
<html>

<head>

</head>

<body>

    <h1>The a target attribute</h1>

    <a href="https://www.w3schools.com" target="_blank">Visit W3Schools.com!</a>
    <p>thank you w3schools :)</p>
    <p>If you set the target attribute to "_blank", the link will open in a new browser window or a new tab.</p>

</body>

</html>
Posted by: Guest on February-15-2021
3

create page html

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
Posted by: Guest on February-24-2020

Code answers related to "how to create a new page in html"

Browse Popular Code Answers by Language