Computer Science, asked by sanika20052011, 5 months ago

Create am Html file having following points:
· Display your marks in half yearly using Table tag.
· On the top of the table our school name using <marquee> tag.
· And school website address at the bottom of the table using <A> tag.​


sanika20052011: I want to know How to create

Answers

Answered by saranmedicals2
0

Answer:

f = open('helloworld.html','w') message = """<html> <head></head> <body><p>Hello World!</p></body> </html>""" f.write(message) f.close()

Similar questions