13 lines
339 B
HTML
13 lines
339 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>My Web Page</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to My Web Page</h1>
|
|
<p>This is a paragraph of text.</p>
|
|
<a href="https://example.com">Click here to visit Example.com</a>
|
|
</body>
|
|
</html> |