-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.html
28 lines (24 loc) · 980 Bytes
/
info.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
<!DOCTYPE html>
<html>
<head>
<title>About</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/jquery.mobile-1.3.1.min.css" />
<script src="js/jquery-1.8.3.min.js"></script>
<script src="js/jquery.mobile-1.3.1.min.js"></script>
<script src="js/converter.js"></script>
</head>
<body>
<div data-role="dialog" data-theme="a">
<div data-role="header" data-theme="a">
<h1>About</h1>
</div>
<div data-role="content">
<h1>Number System Converter</h1>
<p>This application let's you convert different number systems to its corresponding base value. Choose a number system to convert from in the menu then input the value and click the convert button. The answer will be displayed below the screen.</p>
<small>Developed By: <a href="http://fb.com/nekneth">Kenneth Ace Sungcaya</a></small>
<a href="index.html" data-role="button" data-rel="back" data-theme="c">Cool!</a>
</div>
</div>
</body>
</html>