-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 1.01 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
<!doctype HTML>
<html lang="en">
<head>
<title>namer.js</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<canvas id="canvas-radial"></canvas>
<div class="content">
<h1>namer.js</h1>
<h2>Click and loss a random nickname</h2>
<div class="inputs">
<button type="button" class='lossButton' id="buttoon" name="button">Lucky shot</button>
<input type="text" id="getNewName" name="name" value="">
<button type="button" class='clBoard' id="buttoon" data-clipboard-target="#getNewName" name="button">Copy to cb</button>
</div>
</div>
</div>
<script src="js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="js/granim.js"></script>
<script type="text/javascript" src="js/clipboard.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>