-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 803 Bytes
/
index.html
File metadata and controls
30 lines (27 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<title>Cats Example</title>
<link rel="stylesheet" href="css/pix2pix.css" >
<script rel="script" src="js/pix2pix.js"></script>
<script rel="script" src="js/website.js"></script>
</head>
<body>
<nav>
<ul>
<li id="menu-cat" class="selected">Katten</li>
<li id="menu-buildings">Gebouwen</li>
<li id="menu-shoes">Schoenen</li>
<li id="menu-bag">Handtassen</li>
</ul>
</nav>
<div class="p2p active" id="edges2cats"></div>
<div class="p2p" id="facades"></div>
<div class="p2p" id="edges2shoes"></div>
<div class="p2p" id="edges2handbags"></div>
<div>
This is a pix2pix demo, based on code by <a href="https://affinelayer.com/pixsrv/">Christopher Hesse</a>.
</div>
</body>
</html>