<html>
<head>
<style>
#grad1 {
height: 200px;
width: 200px;
background-color: red; /* For browsers that do not support gradients */
background-image: repeating-conic-gradient(from 10deg at 30% 30%, red 0 30deg, yellow 30deg 60deg, blue 60deg 90deg);
border-radius: 50%;
}
</style>
</head>
<body>
<h1>Repeating Conic Gradient</h1>
<div id="grad1"></div>
</body>
</html>