contaigents
Version:
Modular AI Content Ecosystem with Audio Generation
21 lines • 617 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test with Raw CSS</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
.custom-style {
background: linear-gradient(45deg, red, blue);
color: white;
padding: 20px;
}
</style>
</head>
<body class="m-0 p-0" style="width: 800px; height: 600px; background-color: yellow;">
<div class="custom-style" style="font-size: 24px;">
This should be cleaned up!
</div>
</body>
</html>