Posts

Showing posts from April, 2024

ROCK PAPER AND SCISSORS MINI PROJECT WITH HTML,CSS AND JAVASCRIPT

Image
ROCK PAPER AND SCISSORS MINI PROJECT WITH HTML,CSS AND JAVASCRIPT video: Coder Anamika YT Channel Link :  Click to get redirected to the yt channel HTML CODE:  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title >Document</ title >     < link rel = "stylesheet" href = "style.css" > </ head > < body >     < div class = "container" >         < div class = "heading" >             < h1 >Welcome to Rock, Paper and Scissors Game!</ h1 >         </ div >         < div class = "options" id = "rock" >Rock</ div >         < div class = "options" id = "Paper" >Paper</ div >     ...