Weather App 1 Get link Facebook X Pinterest Email Other Apps April 25, 2024 #1 Basic Level: Building the Layout Using HTML AND CSS Get link Facebook X Pinterest Email Other Apps Comments
weather app 3 April 25, 2024 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 ="./ css /style.css"> </head> <body> <div class="app"> <h1>Simple Quiz</h1> <div class="quiz"> <h2 id="question">Question goes here</h2> <div id="answer-buttons"> <button class=" btn ">Ans... Read more
weather app 2 April 25, 2024 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 ="./ css /style.css"> </head> <body> <div class="app"> </div> <script src ="./index.html"></script> </body> </html> CSS *{ margin: 0; padding: 0; font-family: ' poppiins ', sans-serif; box-sizing: border-box; } body{ ... Read more
Comments
Post a Comment