|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Favicon Generator</title> |
|
<style> |
|
body { |
|
margin: 0; |
|
padding: 0; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
height: 100vh; |
|
background-color: #1a1a2e; |
|
} |
|
.favicon { |
|
width: 64px; |
|
height: 64px; |
|
background-color: #6a0dad; |
|
border-radius: 8px; |
|
position: relative; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
overflow: hidden; |
|
} |
|
.text { |
|
font-family: Arial, sans-serif; |
|
font-weight: bold; |
|
font-size: 32px; |
|
color: #ffffff; |
|
text-shadow: 1px 1px 2px rgba(0,0,0,0.5); |
|
} |
|
.accent { |
|
position: absolute; |
|
width: 20px; |
|
height: 20px; |
|
background-color: #00d4b8; |
|
border-radius: 50%; |
|
top: 5px; |
|
right: 5px; |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
<div class="favicon"> |
|
<div class="text">AI</div> |
|
<div class="accent"></div> |
|
</div> |
|
<script> |
|
|
|
|
|
</script> |
|
</body> |
|
</html> |