PRACTICE SET 6(APC)

 HTML


<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>PRACTICE SET 6</title>
  <link rel="stylesheet" href="STLE.CSS">

</head>
<body>
 
    <ul class="navbar">
      <li><a href="#">Home</a></li>
      <li><a href="#">About Us</a></li>
      <li><a href="#">Contact Us</a></li>
      <li><a href="#">Grievance</a></li>
  </ul>
   <Div class="outer">
    <div class="iner"></div>
   </Div>
 
</body>
</html>



CSS

.navbar{
    background-color: chartreuse;
    display: flex;
    justify-content: space-evenly;
   
   
}

a{
    text-decoration: none;
    color: red;
    background-color:aqua;;
}

li{
    list-style-type: none;
    display: inline-block;
}

.outer{
    height: 400px;
    width: 400px;
    background-color: gold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iner{
    height: 100px;
    width: 100px;
    background-color: silver;
}


OUTPUT

Comments

Popular posts from this blog

Launching Page(Javascript)

AMAZON HOME PAGE CLONE PROJECT

Array in function Javascript