animation2code benchmark
For best compatibility, please view this dashboard in a Chrome browser.
← back to Exploring Bourbon

model output

LLaMA 4 Scout

Exploring Bourbon

A 0.41T 0.00
compare with ground truth →
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: #FFC0CB;
10            margin: 0;
11            display: flex;
12            justify-content: center;
13            align-items: center;
14            height: 100vh;
15        }
16        .dot {
17            width: 20px;
18            height: 20px;
19            border-radius: 50%;
20            background-color: white;
21            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
22        }
23    </style>
24</head>
25<body>
26    <div class="dot"></div>
27</body>
28</html>