- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Desafío</title>
<link rel="stylesheet" href="setting.css">
<link rel="stylesheet" href="local-8.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main class="stage">
<div class="notice"></div>
</main>
</body>
</html>
CSS
.notice {
background-image: conic-gradient(
from 45deg at center,
#0f766e,
#fde68a,
#b91c1c,
#0f766e
);
}
/*
Cambia solo la posición después de at para que quede como en el modelo.
Pistas:
Posiciones posibles:
right top, left top, right bottom, left bottom
*/
Ha ido a otra página
0