This simple Python script generates HTML code from text input, and works on humanornot.ai to manipulate displayed text using HTML tags. You can chain multiple HTML modifications in one go.
- Big text using
<h1>
- Small text using
<span style="font-size: 8px;">
(smaller than<h6>
) - Bold text using
<b>
- Italic text using
<i>
- Insert an image using
<img>
- Insert a video using
<video>
and<source>
- Insert a link using
<a>
- Insert JavaScript using
<script>
- Insert custom HTML (with automatic escaping)
- Chaining support: Combine multiple modifications in one go
- Run the
main.py
script. - Enter the numbers corresponding to the desired HTML modifications, separated by commas (e.g.,
1,3,5
for Big Text, Bold, and Insert an Image). - For each option, provide the required input (e.g., text or URL).
- The script outputs the generated HTML code, which you can then use on humanornot.ai.
If you enter "Hello" for big text, the output will be:
<h1>Hello</h1>