-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 927 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
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Avatar generator</title>
<link rel="stylesheet" href="./style/main.css">
</head>
<body class="flex-center flex-col">
<div class="interface flex-center flex-col">
<div class="inp-button m-b-15">
<button class="btn-generate b-r-5">Generate</button>
</div>
<div class="inp-color flex-center m-b-15">
<input type="color" value="#333333" class="inp-color-main">
<input type="color" value="#f5f5f5" class="inp-color-bg">
</div>
</div>
<canvas width="256" height="256"
class="canvas-avatar b-r-5"
title="Right mouse button for save"></canvas>
<p>
<small>Click to picture for save</small>
</p>
<script src="./app/main.js" type="module"></script>
</body>
</html>