Posts

How to Create a 3D Cube with CSS

Image
  MAKING 3D CUBE USING PYTHON How to Create a 3D Cube with CSS- DOWNLOAD THE SOURCE CODE👉- PDF LINK DOWNLOAD STEP BY STEP CODING- Step 1 : Set Up the Basic HTML Structure First,  you'll need an HTML structure to hold the cube.  The structure should include a container div that holds six child div elements,  each representing one face of the cube. html Copy HTML CODE - <!DOCTYPE html> <html lang="en"> <head>   <meta charset="UTF-8">   <meta name="viewport" content="width=device-width, initial-scale=1.0">   <title>3D Cube with CSS</title>   <link rel="stylesheet" href="style.css"> </head> <body>   <div class="cube">     <div class="face front"></div>     <div class="face back"></div>     <div class="face left"></div>     <div class="face right"></div>     <div...

CREATE a Turtle Design with Python Code! #coding #python #shorts

Image
  TURTLE DESIGN PYTHON CODE MY NAME IS KRISH KAUSHIK TODAY WE WILL GONNA LEARN HOW TO   CREATE a Turtle Design with Python Code!  BELOW THERE IS A PYTHON CODE AND LINK OF YOUTUBE VIDEO COPY AND PASTE IT ON YOUR PYTHON COMPLIER  THANKYOU. YOUTUBE VIDEO LINK-https://youtube.com/shorts/SdtnoWWS7k8?si=pIFrV7SV8B9ppBDJ DOCUMENT LINK-https://docs.google.com/document/d/1GspeH-HKesKK3VvHJTLjmogl0B_IwHaPGkk7Jk_AQQQ/edit?pli=1&tab=t.0 CODE LINK- import turtle import math import random # Set up the screen screen = turtle.Screen() screen.bgcolor("black") screen.title("Best Rounded Turtle Animation") screen.tracer(0)  # Manual updates for smooth animation # Create main turtle main_turtle = turtle.Turtle() main_turtle.shape("turtle") main_turtle.color("lime") main_turtle.shapesize(2) main_turtle.speed(0) # Create drawing turtle for patterns pattern_turtle = turtle.Turtle() pattern_turtle.speed(0) pattern_turtle.hideturtle() # Colors for circular patterns c...