-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindexDev_node.html
More file actions
29 lines (23 loc) · 959 Bytes
/
indexDev_node.html
File metadata and controls
29 lines (23 loc) · 959 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
29
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>wcMenu (Web Cabin)</title>
<meta name="description" content="wcMenu is a simple file and toolbar menu system for the web using the MIT license.">
<!-- External Modules -->
<link rel="stylesheet" type="text/css" href="node_modules/font-awesome/css/font-awesome.css"/>
<!-- Core Modules -->
<link rel="stylesheet" type="text/css" href="Code/menu.css"/>
</head>
<body style="background-color:white;">
<div class="container" style="position:absolute;left:0px;right:0px;top:0px;bottom:0px;border:3px solid black;">
<div class="wcMenuContainer" style="border-bottom:2px solid black;"></div>
</div>
<!-- External Modules -->
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<!-- Core Modules -->
<script src="Code/menu.js"></script>
<!-- Demo Specific Files -->
<script src="demo.js"></script>
</body>
</html>