Traffic Light
HTML:-
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="hello.css" >
</head>
<body>
<div id="outer">
<div class="inner" id="red"></div>
<div class="inner" id="orange"></div>
<div class="inner" id="green"></div>
</div>
</body>
</html>
CSS:-
#outer{
height: 200px;
width: 70px;
border:2px solid black ;
}
.inner{
height: 50px;
width: 50px;
border: 2 px solid black;
margin: 10px ;
border-radius: 50%;
}
#green{
background-color: green;
}
#red{
background-color: red;
}
#orange{
background-color: orange;
}
Comments
Post a Comment