Featured Post

Featured

Typography

h1  h2  h3  h4 Normal Bold Strike Underline Italic Link L orem Ipsum is simply dummy text of the printing and typesetting...

Typography

Typography


h1 

h2 

h3 

h4


Normal
Bold
Strike
Underline
Italic

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

 import random
import string

def generate_random_code(length=10):
    characters = string.ascii_letters + string.digits
    return ''.join(random.choice(characters) for _ in range(length))

random_code = generate_random_code()
print(random_code)

"Hello This Is BtBlogger template by InfoTipsNews.com"