10 lines
149 B
Python
Executable File
10 lines
149 B
Python
Executable File
#!/usr/bin/env python3
|
|
print("""
|
|
<html>
|
|
<Title>Hello in HTML</Title>
|
|
<body>
|
|
<p>Hello There!</p>
|
|
<p><b>Hi There!</b></p>
|
|
</body>
|
|
</html> """)
|