12 lines
254 B
HTML
12 lines
254 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Sample Page</title>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to My Website</h1>
|
|
<p>Click the link below to open a new tab:</p>
|
|
<a href="https://www.example.com" target="_blank">Visit Example.com</a>
|
|
</body>
|
|
</html>
|