-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinkmap.html
More file actions
52 lines (43 loc) · 1.4 KB
/
linkmap.html
File metadata and controls
52 lines (43 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title and Icon of the page -->
<title>LinkMap</title>
<link rel="icon" href="fonts/favicon.svg">
<!-- Styles -->
<!-- Icon fonts -->
<link rel="stylesheet" href="css/fonts.css">
<!-- Interface and LinkMap styles -->
<link rel="stylesheet" href="css/linkmap.css">
</head>
<body>
<!-- Pop up that shows the description of a link -->
<div id="infobox">
<h1 id="infobox-title"></h1>
<p id="infobox-description"></p>
</div>
<!-- Small window with a few settings -->
<div class="toolbox">
<p id="icon-code" class="selected">
<i class="material-icons md-48">text_snippet</i>
</p>
<p id="icon-editing">
<i class="material-icons md-48">build</i>
</p>
<p id="icon-save">
<i class="material-icons md-48">save</i>
</p>
<p id="icon-help">
<i class="material-icons md-48">help</i>
</p>
</div>
<!-- Text area that allows to edit the text that describes the linkmap in real time -->
<textarea id="codebox" class="visible"></textarea>
<!-- Place where the linkmap is built -->
<div id="linkmap" class="container"></div>
<!-- Code -->
<script src="js/linkmap.js"></script>
</body>
</html>