forked from amriteshgupta/WebDev2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculator.html
More file actions
98 lines (98 loc) · 4.06 KB
/
calculator.html
File metadata and controls
98 lines (98 loc) · 4.06 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<html>
<head>
<body>
<div class="head">
<nav class="navbar navbar-default container" role="navigation">
<div class="navbar-brand">
<a href="javascript:;">
<span>
<span class="flaticon-the-sum-of-mathematical-symbol"></span>
Example
</span>
</a>
</div>
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-brand-centered">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="navbar-brand-centered">
<ul class="nav navbar-nav">
<li><a href="#">Home</a></li>
<li><a href="#">Converter</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
Caculator <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="#">Matrix</a></li>
<li><a href="#">Normal</a></li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right ">
<li><a href="#">Login</a></li>
<li><a href="#">Register</a></li>
<li><a href="#">About</a></li>
</ul>
</div>
</nav>
<div class="container">
<div class="jumbotron">
<h1 class="text-center">
<span class="flaticon-002-technology"></span>
Example
</h1>
<p>An app that allow you to caculate and convert mutiple things. Also
there are a feature that allow you to easily customize your caculator or converter
depend on your need.</p>
<div class="wrapper">
<button class="btn btn1">
Caculator
</button>
<button class="btn btn2">
Converter
</button>
</div>
</div>
</div>
</div>
<main class="container">
<section class="features">
<header>
<h1 class="nocontent">Features</h1>
</header>
<div class="row">
<div class="col-md-4">
<h2>
<span class="flaticon-tablet-smartphone-computer-checked"></span>
Responsive Design
</h2>
<p>Built with Bootstrap 3.Mobile first design, display beautifully in most mobile devices.</p>
</div>
<div class="col-md-4">
<h2>
<span class="flaticon-function-mathematical-symbol"></span>
Math Display
</h2>
<p>Allow to write and display math in their correct form. Example is 4<sup>4</sup> instead 4^4.</p>
</div>
<div class="col-md-4">
<h2>
<span class="flaticon-sign"></span>
Ration Calculator
</h2>
<p>KCalculator Able to calculate and display rational expression in their correct form.</p>
</div>
</div>
</section>
</main>
<footer class="text-center">
Created;by &arun9198;<a href="https://arun9198.github.io/">togglenavigationcalculator</a>>
</footer></Body>
</head>
</html>