File size: 1,497 Bytes
f6ba329 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
<!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>
// This is just a visual representation
// You would need to use a tool like https://favicon.io/ to generate the actual favicon
</script>
</body>
</html> |