public static void Main()
<h1>This is <b>bold</b> heading</h1>
<p>This is <u>underlined</u> paragraph</p>
<h2>This is <i>italic</i> heading</h2>
<h2>This is new heading</h2>
var htmlDoc = new HtmlDocument();
var h1Node = htmlDoc.DocumentNode.SelectSingleNode("//h1");
h1Node.Attributes.Add("style", "color:blue");
var attribute = htmlDoc.CreateAttribute("align", "left");
h1Node.Attributes.Append(attribute);
Console.WriteLine(h1Node.OuterHtml);
Console.WriteLine("\n***** After removing all the attributes *****\n");
h1Node.Attributes.Remove();
Console.WriteLine(h1Node.OuterHtml);