Drawing Stars using HTML and CSS

In this tutorial we will be Drawing Stars using HTML and CSS. We have used border and position properties of CSS for this purpose.

HTML Code

HTML Code is given below.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>Drawing Stars using HTML and CSS</title>
</head> 
<body>
<div>    
<span class='star'></span>
<span class='star'></span>
<span class='star'></span>
<span class='star'></span>
<span class='star'></span>    
</div>
</body>
</html>

CSS Code

CSS Code is given below.

body
{
margin: 0;
padding: 0;
background-color: #22438c;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.star
{
margin: 20px;
display: inline-block;
width: 0px;
height: 0px;
border-right: 45px solid transparent;
border-bottom: 40px solid #FFCC00;
border-left: 45px solid transparent;
transform: rotate(35deg);
cursor: pointer;
}
.star:before {
position: absolute;
display: inline-block;
left:-32px;
top:-20px;
width: 0px;
height: 0px;
border-right: 16px solid transparent;
border-bottom: 35px solid #FFCC00;
border-left: 16px solid transparent;
content: '';
transform: rotate(-34deg);
cursor:pointer;
}
.star:after {
position: absolute;
display: inline-block;
left:-45px;
top:0px;
width: 0px;
height: 0px;
border-right: 45px solid transparent;
border-bottom: 40px solid #FFCC00;
border-left: 45px solid transparent;
content: '';
transform: rotate(-70deg);
cursor:pointer;}

Demo

Video Tutorial

Watch video tutorial on Drawing Stars using HTML and CSS.

Social Media Menu with Popup Tooltip using HTML and CSS Horizontal Navigation Menu with HTML and CSS Responsive Sidebar Menu with CSS and JavaScript Cool CSS Button with Hover Animation Pure CSS Custom Radio Buttons Custom Emoji Radio Buttons with CSS Color Picker Design with HTML CSS and JavaScript Custom Radio Buttons with CSS Engraved HTML Buttons With CSS Neumorphic Buttons Design with CSS Cool Profile Card Design with HTML CSS Neumorphic Search Bar Design with HTML and CSS Simple Login Form with Placeholder Animation Pure CSS Button with Folded Corner Background Color Change Slider with HTML CSS and JavaScript 404 Page Not Found Template Design with HTML and CSS Movies Blog Card Design with HTML and CSS Simple CSS Border Animation with before and after Selector Custom Social Select Dropdown Menu with CSS and JavaScript Facebook Offline and Online Notification with CSS and JS New Year 2022 Text Animation with CSS and JS Change Placeholder Color using CSS Custom Select Tag DropDown with CSS and JavaScript Simple Price Range Slider With HTML CSS and JavaScript Profile Card With Hover Effect using HTML and CSS Circle With Two Colors using CSS Simple FAQ Accordion With HTML CSS and JavaScript