weather app 2

 

 

 

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{ 

    background: #001e4d;  

} 

.app{ 

    background: #fff; 

    width: 90%; 

    max-width: 600px; 

    margin: 100px auto 0; 

    border-radius: 10px; 

    padding: 30px; 

} 

 

 

JS 

 

 

----- 

 

 

 

Comments

Popular posts from this blog

weather app 3