-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (59 loc) · 2.09 KB
/
index.html
File metadata and controls
64 lines (59 loc) · 2.09 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet" href="style.css">
<title>Graph Generator</title>
</head>
<body>
<header>
<span class="material-symbols-outlined icon">
radio_button_checked
</span>
<div>
<div id="parameters">
<button id="save_button">Save</button>
<button id="download_button">Download</button>
</div>
<div id="separator"></div>
<div id="tools_wrapper">
<button id="tool_normal_cursor"><img src="assets/default.svg" alt=""></button>
<button id="tool_new_node"><img src="assets/newNode.svg" alt=""></button>
<button id="tool_new_link"><img src="assets/newLink.svg" alt=""></button>
</div>
</div>
</header>
<canvas width="10000" height="10000">
Allez cheh
</canvas>
<div id="node_config_menu">
<div id="node_name_wrapper">
<label id="node_name_label" for="node_name">Name :</label>
<input type="text" name="node_name" id="node_name" value="undefined">
</div>
<div class="node_form_selecter">
<h3>Form :</h3>
<div id="form_wrapper">
<button id="node_form_circle">⚫</button>
<button id="node_form_square">⬛</button>
</div>
</div>
<div class="node_color_picker">
<h3>Color :</h3>
<div id="color_wrapper">
</div>
</div>
<div id="node_options">
<div id="node_delete">
Delete
</div>
</div>
</div>
</body>
<script type="module" src="js/index.js"></script>
<script type="module" src="js/menu.js"></script>
<script type="module" src="js/header.js"></script>
</html>