// https://maroontress.github.io/HtmlBuilder/
using System;
using Maroontress.Html;
public sealed class Program
{
public static void Main()
var nodeOf = Nodes.NewFactory();
var header = nodeOf.H1.WithId("intro")
.WithClass("title", "anchor")
.Add("Introduction");
var result = header.ToString();
Console.WriteLine(result);
}