DiscordEmbedder/resources/embedCard.html
2023-12-18 19:01:53 +00:00

30 lines
846 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./embedStyle.css">
<title>{DISPLAY_NAME}</title>
</head>
<body>
<div id="card">
<h1>{DISPLAY_NAME}</h1>
<div style="display: flex; justify-content: center; align-items: center;">
<img style="border-color: {STATUS_COLOR}" src="https://api.lanyard.rest/534132311781015564.png" class="pfp">
<div>
<p>
Status: <span style="color: {STATUS_COLOR}">{STATUS}</span><br>
Username: {USERNAME}<br>
{CUSTOM_STATUS}
</p>
</div>
</div>
</div>
</body>
</html>