Files
webtorrent-desktop/static/webtorrent.html
2016-09-08 23:55:37 -07:00

26 lines
540 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>WebTorrent Hidden 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>