mirror of
https://github.com/G2-Games/website.git
synced 2025-04-19 18:02:54 -05:00
27 lines
585 B
HTML
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>
|