CoolFace
Apppublic

slimshadow/index

sourceHugging Facemitupdated 2y agoView on Hugging Face
0likes
background-remover.html28 linesDownload Raw Back to root
1<!DOCTYPE html>
2<html lang="en">
3<head>
4    <meta charset="UTF-8">
5    <meta name="viewport" content="width=device-width, initial-scale=1.0">
6    <title>slimshadow background remover</title>
7    <style>
8        body, html {
9            margin: 0;
10            padding: 0;
11            height: 100%;
12            overflow: hidden;
13        }
14        iframe {
15            position: absolute;
16            top: 0;
17            left: 0;
18            width: 100%;
19            height: 100%;
20            border: none;
21        }
22    </style>
23</head>
24<body>
25    <iframe src="https://slimshadow-bg-remove.hf.space/?embed=true&embed_options=hide_toolbar&embed_options=light_theme#background-removal-app"></iframe>
26</body>
27</html>
28