26 lines
544 B
HTML
26 lines
544 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Leenkx Box Background Window</title>
|
|
<style>
|
|
body {
|
|
background-color: #282828;
|
|
margin: 5px;
|
|
overflow: hidden;
|
|
}
|
|
img {
|
|
width: 140px;
|
|
height: 140px;
|
|
}
|
|
</style>
|
|
<script>
|
|
require('../build/renderer/webtorrent.js')
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<img alt="WebTorrent" src="WebTorrent.png">
|
|
</body>
|
|
</html>
|