Posts

Showing posts from February, 2024

Weather app using HTML,CSS,JAVASCRIPT

Image
 HTML <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Weather App </ title >     < link rel = "stylesheet" href = "style.css" > </ head > < body >     < div class = "card" >         < div class = "search" >             < input type = "text" placeholder = "Enter city name" spellcheck = "false" >             < button >< img src = "search.png" ></ button >         </ div >         < div class = "error" >             < p > Invalid city name </ p >         </ div >         < div class =...