What if there is someone who just loves Python and is too arrogant to learn HTML ? No worries, HTML Code Generator comes to the rescue.
You can create a HTML file without even coding in HTML . All you need to know is basics of python.
This program treats every HTML element as an object.
Some functions of the program:
html = Element('html') # to create an element (html element)
head = Element('head') # creating another element
html.add(head) # adding the newly created head element inside the html element
body = Element('body') # creating body element
html.add(body)
head.add(Element('title', 'My first website')) # adding an element in head with content 'My first website'
h1 = Element('h1','This is a h1 heading')
inp = Element('input')
inp.add_atr('placeholder','Enter your name')
inp.add_atr('title','Enter your full name')
body.add(h1)
body.add(inp)
btn = Element('button','Submit')
body.add(btn)
script = Element('script', 'alert("hello")')
body.add(script)
#Element.display(html)
Element.create_file(html) # final method to render html file as output