Posts

Jarvis Chatbot using HTML, CSS & JS

index.html <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > JARVIS - Virtual Assistant </ title >     < link rel = "shortcut icon" href = "avatar.png" type = "image/x-icon" >     < link rel = "stylesheet" href = "style.css" >     < link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" > </ head > < body >     < section class = "main" >         < div class = "image-container" >             < div class = "image" >                 < img src = "giphy.gif" alt = "i...

Quiz App using HTML, CSS & JS

index.html  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Quiz App </ title >     < link rel = "stylesheet" href = "style.css" > </ head > < body >     < div class = "app" >     < h1 > Simple Quiz </ h1 > < div class = "quiz" >     < h2 id = "question" > Question goes here </ h2 >         < div id = "answerButton" >             < button class = "btn" > Answer 1 </ button >             < button class = "btn" > Answer 2 </ button >             < button class = "btn" > Answer 3 </ button >             ...