-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
28 lines (25 loc) · 710 Bytes
/
Copy pathapp.html
File metadata and controls
28 lines (25 loc) · 710 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Git ART Generater</title>
<link rel="stylesheet" href="./app.css">
</head>
<body>
<div class="app">
<h1>Welcome to Github Board Art</h1>
<h3>Note : always add top left node, else maybe it can give unexpected result</h3>
</div>
<center>
<div class="board" id="board">
</div>
</center>
<br><br>
<button onclick="generate()">Generate</button>
<br>
<br>
<textarea name="points" id="points" cols="100" rows="30"></textarea>
</body>
<script src="./app.js"></script>
</html>