Example #1
0
	def __init__(self):
		element.__init__(self, "div", "left-bar")
Example #2
0
	def __init__(self, child):
		element.__init__(self, "body", None, children)
Example #3
0
	def __init__(self):
		element.__init__(self, "h1", "moto")
Example #4
0
	def __init__(self):
		element.__init__(self, "img", "logo")
Example #5
0
	def __init__(self, children):
		children =  (logo(), moto())
		element.__init__(self, "head", None, *children)
Example #6
0
	def __init__(self, children):
		element.__init__(self, "html", None, children)