Subscribe Our Channel

header ads

Search This Blog

Wednesday, December 31, 2025

Happy Birthday wish using Python | Wish Happy Birthday using Python Turtle Graphics

 Happy Birthday wish using Python | Wish Happy Birthday using Python Turtle Graphics 

#___________ WELCOME ALL OF YOU ON COMPUTER SOFT SKILLS CHANNEL __________
#................. PYTHON PROGRAM TO Wish Happy Birthday .............................................

import turtle as computersoftskills

from turtle import *
from random import randint

rohit = computersoftskills.Screen()
rohit.bgcolor("lavender")
rohit.title("COMPUTER SOFT SKILLS :- Happy Birthday")
computersoftskills = computersoftskills.Turtle()

computersoftskills.penup()
computersoftskills.goto(-30,220)
computersoftskills.color("purple")

computersoftskills.write("𝓡𝓞𝓗𝓘𝓣", font=("arial black", 45, "normal"), align="center")
computersoftskills.hideturtle()

colors = ["orange", "red", "dark blue", "green", "deeppink", "gold", "ivory", "red", "pink",
          "green", "blue", "light green", ]

def ballon(x, y):
    computersoftskills.pensize(1)
    for i in range(5):
        draw_rohit(i, x, y)

def draw_rohit(i, x, y):
    computersoftskills.pencolor("red")
    computersoftskills.color(colors[i % 12])
    computersoftskills.begin_fill()
    computersoftskills.lt(70)
    computersoftskills.penup()
    computersoftskills.goto(x, y)
    computersoftskills.pendown()
    computersoftskills.circle(35)
    computersoftskills.end_fill()

def cake(x, y):
    computersoftskills.fd(x)
    computersoftskills.rt(90)
    computersoftskills.fd(y)
    computersoftskills.rt(90)
    computersoftskills.fd(x)
    computersoftskills.rt(90)
    computersoftskills.fd(y)


def heart():
    for i in range(43):
        computersoftskills.pencolor(colors[i % 9])
        computersoftskills.rt(5)
        computersoftskills.fd(5)
    computersoftskills.pencolor("red")
    computersoftskills.fd(150)
    computersoftskills.penup()
    computersoftskills.rt(140)
    computersoftskills.fd(147)
    computersoftskills.pendown()
    for i in range(43):
        computersoftskills.pencolor(colors[i % 9])
        computersoftskills.lt(5)
        computersoftskills.fd(5)
    computersoftskills.pencolor("red")
    computersoftskills.lt(7)
    computersoftskills.fd(151)

def mov(x, y):
    computersoftskills.up()
    computersoftskills.setposition(0, 0)
    computersoftskills.setheading(90)
    computersoftskills.lt(90)
    computersoftskills.fd(x)
    computersoftskills.rt(90)
    computersoftskills.fd(y)
    computersoftskills.pendown()

def H(size):
    computersoftskills.fd(size)
    computersoftskills.backward(size // 2)
    computersoftskills.rt(90)
    computersoftskills.fd(size // 2)
    computersoftskills.lt(90)
    computersoftskills.fd(size // 2)
    computersoftskills.backward(size)

def A(size):
    computersoftskills.rt(19)
    computersoftskills.forward(size)
    computersoftskills.rt(141)
    computersoftskills.fd(size)
    computersoftskills.backward(size / 2)
    computersoftskills.rt(110)
    computersoftskills.fd(int(size / 3))

def P(size):
    computersoftskills.fd(size)
    computersoftskills.rt(90)
    computersoftskills.fd(size // 8)
    for i in range(8):
        computersoftskills.rt(20)
        computersoftskills.fd(size // 9)

def Y(size):
    computersoftskills.fd(size)
    computersoftskills.left(60)
    computersoftskills.fd(size // 2)
    computersoftskills.backward(size // 2)
    computersoftskills.rt(90)
    computersoftskills.fd(size // 1.5)

def B(size):
    computersoftskills.forward(size)
    computersoftskills.rt(90)
    for i in range(18):
        computersoftskills.rt(9)
        computersoftskills.fd(size // 20)
    for i in range(18):
        computersoftskills.rt(size // 5)
        computersoftskills.backward(size // 20)
       
def I(size):
    computersoftskills.fd(size)
    computersoftskills.rt(90)
    computersoftskills.circle(size // 8)

def move(x, y):
    computersoftskills.up()
    computersoftskills.setposition(0, 0)
    computersoftskills.setheading(90)
    computersoftskills.rt(90)
    computersoftskills.fd(x)
    computersoftskills.lt(90)
    computersoftskills.fd(y)
    computersoftskills.pendown()

def R():
    computersoftskills.fd(60)
    computersoftskills.rt(90)
    computersoftskills.fd(7)
    for i in range(15):
        computersoftskills.rt(12)
        computersoftskills.fd(3)
    computersoftskills.lt(120)
    computersoftskills.fd(40)

def T(size):
    computersoftskills.fd(size)
    computersoftskills.rt(90)
    computersoftskills.fd(size // 2)
    computersoftskills.backward(size // 2)
    computersoftskills.backward(size // 4)

def D(size):
    computersoftskills.fd(size)
    computersoftskills.rt(90)
    computersoftskills.fd(size // 10)
    for i in range(13):
        computersoftskills.rt(13)
        computersoftskills.fd(size // 8)


computersoftskills.speed(19)
computersoftskills.width(5)

ballon(223, -150)
ballon(-233, -150)

mov(20,-130)
computersoftskills.width(13)

heart()

#Cake 
computersoftskills.speed(3)
mov(120,80)
computersoftskills.color("darkorange")
computersoftskills.begin_fill()
cake(40,160)
computersoftskills.end_fill()
mov(110,115)
computersoftskills.color("gold")
computersoftskills.begin_fill()
cake(40,140)
computersoftskills.end_fill()
mov(100,150)
computersoftskills.color("violet")
computersoftskills.begin_fill()
cake(40,120)
computersoftskills.end_fill()
mov(35,200)
computersoftskills.width(11)
computersoftskills.pencolor("red")
computersoftskills.circle(7)


#candles

computersoftskills.pensize(3)
computersoftskills.penup()
computersoftskills.goto(-100,210)
computersoftskills.color("red")
computersoftskills.left(180)
computersoftskills.pendown()
computersoftskills.forward(20)

computersoftskills.penup()
computersoftskills.goto(-80,210)
computersoftskills.color("blue")
computersoftskills.pendown()
computersoftskills.forward(20)


computersoftskills.penup()
computersoftskills.goto(-10,210)
computersoftskills.color("blue")
computersoftskills.pendown()
computersoftskills.forward(20)

computersoftskills.penup()
computersoftskills.goto(20,210)
computersoftskills.color("red")
computersoftskills.pendown()
computersoftskills.forward(20)



# #rohitbithday
computersoftskills.pencolor("green")
computersoftskills.width(13)
mov(260,-30)
H(100)
computersoftskills.width(7)
mov(190,-30)
A(65)
mov(135,-30)
P(60)
mov(100,-30)
P(60)
mov(52,-30)
Y(60)
computersoftskills.pencolor('deeppink')
mov(28,-30)
B(60)
move(12,-30)
I(60)
move(36,-30)
R()
move(80,-30)
T(100)
move(102,-30)
H(60)
move(150,-30)
D(200)
move(160,-30)
A(60)
move(220,-30)
Y(60)

rohit.exitonclick()


#____________________ I HOPE YOU LIKE THIS PROGRAMMING _______________

#________________LIKE _________________SHARE _________________SUBSCRIBE ________________

Tuesday, December 30, 2025

Wish Happy New Year 2026 using Python Turtle Graphics | 2026 New Year Wish programming in Python Language | Python Turtle Graphics

Wish Happy New Year 2026 using Python Turtle Graphics


HELLO VIEWERS YOU MIGHT BE INTERESTED IN THIS POST.

Your welcome to our website COMPUTER SOFT SKILLS, after reading this article you can make this in just 2 minutes.
THIS IS PYTHON PROGRAMMING TO Wish Happy New Year 2026.

Python Turtle Graphics
YOU CAN COPY THIS CODE AND SAVE IN YOUR SYSTEM.
This Programming created by Rohit, owner of Computer Soft Skills. Yes you read it right! You can make that type of Project easily in Python application.

 #_________ WELCOME ALL OF YOU ON COMPUTER SOFT SKILLS CHANNEL __________

#........... WISH HAPPY NEW YEAR USING PYHON TURTLE GRAPHICS ......................


import turtle
import random
import colorsys

# Turtle Window
wn = turtle.Screen()
wn.setup(800,750)
wn.title("Computer Soft Skills: HAPPY NEW YEAR")

turtle.bgcolor('LIGHTPINK')
turtle.tracer(2)
t=turtle.Turtle()
t.hideturtle()
t.pensize(3)
hue=0.5

t.penup()
t.hideturtle()

#___CRACKERS_______________

for i in range (50):
     x=random.randint(-400,500)
     y=random.randint(-200,450)
     z=random.randint(-300,600)
     t.speed(80)
     t.penup()
     t.goto(x,y)
     t.pendown()

     size=random.randint(10,180)

     for i in range(36):
          color=colorsys.hsv_to_rgb(hue,1,1)
          t.pencolor(color)
          t.fd(size)
          t.bk(size)
          t.lt(10)
          hue +=0.01

     def write(message,pos):
          x,y=pos
          t.penup()
          t.goto(x,y)
          t.speed(100)
          style=('ARIAL BLACK',50,'normal')
          t.write(message,font=style)
     write('HAPPY',(-80,280))
     write('NEW',(-50,200))
     write('YEAR',(-50,100))
     write('2026',(-50,0))

turtle.done()








Wish Happy New Year 2026 using Python Turtle Graphics | 2026 New Year Wish programming in Python Language | Python Turtle Graphics

  

Wish Happy New Year 2026 using Python Turtle Graphics



HELLO VIEWERS YOU MIGHT BE INTERESTED IN THIS POST.

Your welcome to our website COMPUTER SOFT SKILLS, after reading this article you can make this in just 2 minutes.
THIS IS PYTHON PROGRAMMING TO Wish Happy New Year 2026.

Python Turtle Graphics
YOU CAN COPY THIS CODE AND SAVE IN YOUR SYSTEM.
This Programming created by Rohit, owner of Computer Soft Skills. Yes you read it right! You can make that type of Project easily in Python application.


#___________ WELCOME ALL OF YOU ON COMPUTER SOFT SKILLS CHANNEL __________
#................ PYTHON PROGRAM TO WISH HAPPY NEW YEAR 2026 .........................

from turtle import*
from random import*
from time import sleep
title("Computer Soft Skills")
bgcolor("black")
setup(width=500, height=800)
stamp()
speed(1000)

#create fireworks
stars_pos=[(-150, -325), (150, -320), (-150, 325), (120, 320)]
colors =["orange","blue","red","yellow"]
for i in range(len(stars_pos)):
    x = stars_pos [i] [0]
    y = stars_pos [i] [1]
    up()
    color(colors[i])
    goto(x,y)
    for i in range(23):
        down()
        forward(50)
        up()
        forward(23)
        stamp()
        backward(50)
        left(72)
        right(5)
        hideturtle()
goto(0,150)
color("Blue")
write("Happy", font=("arial black", 65, "normal"), align="center")
goto (0,80)
sleep(1)
color("yellow")
write("New", font=("arial black", 50, "normal"), align="center")
goto(0,0)
sleep(1)
color("Red")
write("Year", font=("arial black", 50, "normal"), align="center")
goto(0,-100)
sleep(1)
color("Pink")
write("2026", font=("arial black", 65, "normal"), align="center")
goto(8,-200)
sleep(1)
color('red')
write("Computer Soft Skills", font=("Verdana", 15, "normal"), align="center")
goto(-500,-500)
sleep(1)
mainloop()



#______________ I HOPE YOU LIKE THIS PROGRAMMING _______________

#________________LIKE _________________SHARE _________________SUBSCRIBE ________________


If you like this Python Programming then share it with your friends, Thanks.


Happy New Year 2026 wish using HTML and CSS | Firework animation In HTML and CSS | Animation Using HTML and CSS

 Happy New Year 2026 wish Using HTML and CSS 

<!-- WELCOME ALL OF YOU ON COMPUTER SOFT SKILLS CHANNEL ------>


<!DOCTYPE html>

<html lang="en">

<head>

<title>Happy New Year 2026</title>

<style>

 

*, *:after, *:before{

  box-sizing:border-box;

  margin:0;

  padding:0;

  -webkit-transition: all 100ms ease-in;

  transition: all 100ms ease-in;

}

html{

background: 

    linear-gradient(black);

  margin: 0;

  height: 100vh;

  overflow: hidden;

}

.hny{

  width: 100%;

  font-family: arial;

  font-size: 100px;

  font-weight: 700;

  color: yellow;

  text-align: center;

  position: absolute;

  top: 50%;

  opacity: 0;

  animation: vem_hny 2s ease-in-out 7s forwards;

}

.dm{

  position: absolute;

  width: 100%;

  height: 100%;

  display: flex;

  flex-direction: row;

  justify-content: center;

  align-items: center;

  overflow: hidden;

  padding: 150px 160px 0px 0px;

}

.dm>span{

  font-family: 'Montserrat', sans-serif;

  font-size: 160px;

  font-weight: 800;

  color: Red;

}

span.last5{

  position: absolute;

  right: 53%;

  margin-right: -219px;

  animation: vai_2016 5s ease-in-out 5s forwards;

}

span.new6{

  position: absolute;

  right: 0%;

  margin-right: -219px;

  animation: vem_2017 6s ease-in-out forwards;

}


.balloon{

  width: 150px;

  height: 150px;

  display: block;

  background: green;

  border-radius: 50%;

  position: absolute;

  top: 50%;

  margin-top: -165px;

  right: 0%;

  margin-right: -200px;

  animation: vem_e_vai_balloon 10s ease-in-out forwards;

}

.balloon:before{

  content: '';

  width: 0;

  height: 0;

  border-style: solid;

  border-width: 0 10px 20px 10px;

  border-color: transparent transparent green transparent;

  position: absolute;

  left: 50%;

  margin-left: -10px;

  bottom: -10px;

  z-index: -1;

}

.balloon:after{

  content: '';

  width: 4px;

  height: 100px;

  display: block;

  background: red;

  border-radius: 0px 0px 3px 3px;

  position: absolute;

  left: 50%;

  margin-left: -2px;

  bottom: -110px;

}

@keyframes vem_2017 {

  0% {

    right: 0%;

  }

  66.6666% {

    right: 50%;

    margin-right: -300px;

  }

  90% {

    right: 50%;

    margin-right: -300px;

  }

  100% {

    right: 50%;

  }

}

@keyframes vem_e_vai_balloon {

  0% {

    right: 0%;

  }

  40% {

    right: 50%;

    margin-right: -300px;

  }

  50% {

    right: 50%;

    margin-right: -200px;

    top: 50%;

  }

  100% {

    top: -100%;

    right: 50%;

  }

}

@keyframes entrega_balloon {

  0% {

    transform: rotate(-30deg);

    width: 40px;

  }

  100% {

    transform: rotate(-150deg);

    width: 70px;

  }

}

@keyframes vai_2016 {

  0% {

    top: 50%;

  }

  100% {

    top: -100%;

  }

}

@keyframes vem_hny {

  0% {

    margin-top: 0px;

    opacity: 0;

  }

  100% {

    margin-top: -200px;

    opacity: 1;

  }

}

@keyframes firework {

  0% { transform: translate(var(--x), var(--initialY)); width: var(--initialSize); opacity: 1; }

  50% { width: 0.5vmin; opacity: 1; }

  100% { width: var(--finalSize); opacity: 0; }

}


/* @keyframes fireworkPseudo {

  0% { transform: translate(-50%, -50%); width: var(--initialSize); opacity: 1; }

  50% { width: 0.5vmin; opacity: 1; }

  100% { width: var(--finalSize); opacity: 0; }

}

 */

.firework,

.firework::before,

.firework::after

{

  --initialSize: 0.5vmin;

  --finalSize: 45vmin;

  --particleSize: 0.2vmin;

  --color1: yellow;

  --color2: khaki;

  --color3: white;

  --color4: lime;

  --color5: gold;

  --color6: mediumseagreen;

  --y: -30vmin;

  --x: -50%;

  --initialY: 60vmin;

  content: "";

  animation: firework 2s infinite;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, var(--y));

  width: var(--initialSize);

  aspect-ratio: 1;

  background: 

    /*

    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 0% 0%,

    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 100% 0%,

    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 100% 100%,

    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 0% 100%,

    */


    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 50% 0%,

    radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 100% 50%,

    radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 50% 100%,

    radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 0% 50%,


    /* bottom right */

    radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 80% 90%,

    radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 95% 90%,

    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 90% 70%,

    radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 100% 60%,

    radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 55% 80%,

    radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 70% 77%,


    /* bottom left */

    radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 22% 90%,

    radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 45% 90%,

    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 33% 70%,

    radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 10% 60%,

    radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 31% 80%,

    radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 28% 77%,

    radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 13% 72%,


    /* top left */

    radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 80% 10%,

    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 95% 14%,

    radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 90% 23%,

    radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 100% 43%,

    radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 85% 27%,

    radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 77% 37%,

    radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 60% 7%,


    /* top right */

    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 22% 14%,

    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 45% 20%,

    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 33% 34%,

    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 10% 29%,

    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 31% 37%,

    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 28% 7%,

    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 13% 42%

    ;

  background-size: var(--initialSize) var(--initialSize);

  background-repeat: no-repeat;

}


.firework::before {

  --x: -50%;

  --y: -50%;

  --initialY: -50%;


}


.firework::after {

  --x: -50%;

  --y: -50%;

  --initialY: -50%; 

}


.firework:nth-child(2) {

  --x: 30vmin;

}


.firework:nth-child(2),

.firework:nth-child(2)::before,

.firework:nth-child(2)::after {

  --color1: pink;

  --color2: violet;

  --color3: fuchsia;

  --color4: orchid;

  --color5: plum;

  --color6: lavender;  

  --finalSize: 40vmin;

  left: 30%;

  top: 60%;

  animation-delay: -0.25s;

}


.firework:nth-child(3) {

  --x: -20vmin;

  --y: -50vmin;

}


.firework:nth-child(3),

.firework:nth-child(3)::before,

.firework:nth-child(3)::after {

  --color1: red;

  --color2: green;

  --color3: blue;

  --color4: orange;

  --color5: SkyBlue;

  --color6: purple;

  --finalSize: 35vmin;

  left: 70%;

  top: 60%;

  animation-delay: -0.10s;

}

</style>    

</head>

<body>

<div class="firework"></div>

<div class="firework"></div>

<div class="firework"></div>

    <div class="hny">Happy New Year</div>

<div class="dm">

  <span>202</span>

  <span class="last5">5</span>

  <span class="new6">6</span>

  <div class="balloon"></div>

</div>

</div>

</body>

</html>



<!--___________= LIKE =_______= SHARE =_________= SUBSCRIBE =___________--!>


Featured Post

Happy Republic Day Wish Using HTML and CSS | 26 January wish using HTML/CSS

 Happy Republic Day Wish Using HTML and CSS, 26 January wish using HTML/CSS <!-- WELCOME ALL OF YOU ON COMPUTER SOFT SKILLS CHANNEL -----...

Popular Posts