website/random/cute_logos/index.html
2024-04-22 03:13:17 -05:00

27 lines
585 B
HTML

<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Cute Logos</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
max-width: 640px;
font-family: sans-serif;
padding: 5px;
margin: auto;
}
img {
max-width: 100%;
}
</style>
</head>
<body>
<h1>Kate - Advanced Text Editor</h1>
<img src="https://github.com/G2-Games/fun-logos/raw/main/kate/kate-animated.svg">
</body>
</html>