-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanage_env.html
More file actions
33 lines (29 loc) · 898 Bytes
/
Copy pathmanage_env.html
File metadata and controls
33 lines (29 loc) · 898 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
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Envify</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Envify</h1>
<p>Define your own environments below.</p>
<button id="btn-add-env">Add an environment</button>
<main class="list-environments">
</main>
<button id="btn-save-env">Save</button>
<p>Select visual style</p>
<select id="select-visual-style">
<option value="left">Left bar</option>
<option value="right">Right bar</option>
<option value="leftright">Left and right bar</option>
<option value="top">Top bar</option>
<option value="bottom">Bottom bar</option>
<option value="topbottom">Top and bottom bar</option>
</select>
<script src="browser-polyfill.min.js"></script>
<script src="main.js"></script>
</body>
</html>