-
Notifications
You must be signed in to change notification settings - Fork 272
/
index.html
29 lines (25 loc) · 819 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Core Values Decoder</title>
<link rel="stylesheet" type="text/css" href="./style/index.css" />
</head>
<body>
<header>
<h2>Core Values Encoder</h2>
</header>
<div class="content">
<textarea id="decoded-area" placeholder="Decoded Text Here"></textarea>
<div class="buttons">
<button id='encode-btn'>Encode >></button>
<button id='decode-btn'><< Decode</button>
</div>
<textarea id="encoded-area" placeholder="Encoded Text Here"></textarea>
</div>
<footer>
<p>Celebrate 19 big, 2017</p>
</footer>
<script type="text/javascript" src="./dist/bundle.js"></script>
</body>
</html>