-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.12 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./app.js"></script>
<link rel="stylesheet" href="main.css">
<title>Document</title>
</head>
<body>
<div id="header">
<div id="nav-bar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="cssedit.html">CSSEdit</a></li>
<li style="float:right"><a class="active" href="#about">About</a></li>
</ul>
</div>
</div>
<div id="htmlcontainer" class="">
<p>Enter HTML here</p>
<input type="text" id="input-form" name="htmlInput">
<p><button id="submit" onclick="handleSubmit()">Submit</button>
</p>
</div>
<div id="csseditor" class="hide">
<p>Enter element name</p>
<input type="text" id="element-name" name="fname">
<button id="submit" onclick="elSubmit()" >Submit</button>
<div class="main">
<div id=output> </div>
<div id=options> </div>
</div>
</div>
</body>
</html>