← back to SVG Loading iconscompare with ground truth →
model output
LLaMA 4 Scout
SVG Loading icons
A 0.40T 0.00
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Animation</title>
7 <style>
8 body {
9 background-color: #333;
10 display: flex;
11 justify-content: center;
12 align-items: center;
13 height: 100vh;
14 margin: 0;
15 }
16 .crescent {
17 position: relative;
18 top: -50px;
19 width: 0;
20 height: 0;
21 border-style: solid;
22 border-width: 0 10px 20px 10px;
23 border-color: transparent transparent #FFA07A transparent;
24 }
25 </style>
26</head>
27<body>
28 <div class="crescent"></div>
29</body>
30</html>