-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
23 lines (23 loc) · 841 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<title>4K Desktop wallpaper generator</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="wallpaper.js"></script>
</head>
<body>
<div id="container">
<canvas width="3840" height="2160"></canvas>
<p id="links">
<!-- Empty links are set in JS -->
<a download="wallpaper.png" href="" id="download">Save</a>
<a href="" id="share">Share link</a>
<a href="" id="new">Refresh</a>
</p>
<p id="credits">© <a href="https://roytanck.com">Roy Tanck</a>, code available on <a href="https://github.com/roytanck/wallpaper-generator">Github</a>.</p>
</div>
</body>
</html>