Solved
Forum Discussion
bryan-riley
4 months agoCreator II
Did you try using the code editor? This things worked well for me
<!DOCTYPE html>
<html>
<head>
<title>My First HTML Page</title>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is a paragraph of text on my first web page.</p>
<a href="https://www.example.com">Visit Example</a>
<img src="example.jpg" alt="Example Image" width="200" height="100">
</body>
</html>