-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.02 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Face Editor 😑</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/numjs/0.16.0/numjs.min.js"></script>
<script src="app.js"></script>
<link rel="stylesheet" href="css.css" />
</head>
<body>
<div style="text-align: center; margin-top: 20px">
<h1>😃 Face Editor 😳</h1>
</div>
<div id="grid">
<div class="slider_column">
<div class="slider_column_padded"></div>
</div>
<div id="img_column">
<div id="img_column_padded"></div>
<div id="buttons">
<div id="random_button" class="button"></div>
<div id="reset_button" class="button"></div>
</div>
</div>
<div class="slider_column">
<div class="slider_column_padded"></div>
</div>
</div>
</body>
</html>