mirror of
https://github.com/027xiguapi/code-box.git
synced 2026-04-28 15:22:15 +00:00
44 lines
801 B
HTML
44 lines
801 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background-color: #fff;
|
|
}
|
|
div {
|
|
text-align: center;
|
|
}
|
|
img {
|
|
width: 20%;
|
|
}
|
|
p {
|
|
font-size: 2em;
|
|
color: #000;
|
|
font-family: fantasy;
|
|
}
|
|
div {
|
|
font-size: 1em;
|
|
color: #666;
|
|
font-family: fantasy;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<img src="./128x128.png" alt="logo" />
|
|
<p>codebox</p>
|
|
<div>One-click Code Copying/Downloading Articles</div>
|
|
</div>
|
|
</body>
|
|
</html> |