13 lines
379 B
HTML
13 lines
379 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<title>My Web Page</title>
|
|
<link rel="stylesheet" type="text/css" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to My Web Page</h1>
|
|
<p>This is a sample paragraph to demonstrate the HTML structure.</p>
|
|
<svg width="300" height="300" style="border: 1px solid red;">
|
|
<rect width="200" height="100"></rect>
|
|
</svg>
|
|
</body>
|
|
</html> |