#include <iostream.h>
#include "node.h"

class html_doc:public node
{
public:
	html_doc();
	~html_doc();
	void Print();
};


class html_center:public node{
public:
  html_center();
 ~html_center(); 
  void Print();
private: 
 int a;
};