Simple HTML Generation https://minihtml.trendels.name/
1<html lang="en">
2 <head>
3 <title>hello, world!</title>
4 </head>
5 <body>
6 <div id="content" class="main">
7 <p>Welcome to <a href="https://example.com/">my website</a></p>
8 <img src="hello.png" alt="hello">
9 <ul>
10 <li><a href="/">Home</a></li>
11 <li><a href="/about">About Me</a></li>
12 <li><a href="/projects">Projects</a></li>
13 </ul>
14 </div>
15 </body>
16</html>