forked from Danish0929x/MatC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (72 loc) · 2.96 KB
/
index.html
File metadata and controls
119 lines (72 loc) · 2.96 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>MatC | Calculator</title>
</head>
<body>
<section class="header">
<!-- ----- Navbar ----- -->
<nav class="navbar">
<div class="logo">
<a href="#">Mat<span>C</span></a>
</div>
<div class="cal">
<ul>
<li><a href="#">Inverse</a></li>
<li><a href="#">Product</a></li>
<li><a href="#">Determinant</a></li>
</ul>
</div>
</nav>
<!-- ----- Navbar ----- -->
<!-- ----- Header ----- -->
<div class="head">
<div class="matc">
<img src="images/matc.png" alt="">
</div>
<h2>A Free, Simple, Easy to use Calculator to perform basic Matrix Operations</h2>
</div>
</section>
<!-- ----- Header ----- -->
<!-- ----- options ----- -->
<div class="options">
<h2>Choose the operation which you want to perform</h2>
<div class="choose">
<a href="https://danish0929x.github.io/MatC/add-substract/">Addition</a>
<a href="https://danish0929x.github.io/MatC/add-substract/">Substraction</a>
<a href="#">Multiplication</a>
<a href="#">Inverse</a>
<a href="#">Determinant</a>
<a href="#">Power of Matrix</a>
<a href="#">Rank of Matrix</a>
<a href="#">Gauss Jordan</a>
<a href="#">Gauss Elimination</a>
</div>
</div>
<!-- ----- options ----- -->
<!-- ----- Footer ----- -->
<div class="footer">
<div class="footer-name">
<h4>MatC</h4>
<p>Matrix calculator made with 💗 and ☕</p>
</div>
<div class="footer-content">
<span><a href="https://danish0929x.github.io/MatC/add-substract/">Addition</a> </span><span>|</span>
<span><a href="https://danish0929x.github.io/MatC/add-substract/">Substraction</a> </span><span>|</span>
<span><a href="#">Multiplication</a> </span><span>|</span>
<span><a href="#">Inverse</a> </span><span>|</span>
<span><a href="#">Determinant</a> </span><span>|</span>
<span><a href="#">Power of Matrix</a> </span><span>|</span>
<span><a href="#">Rank of Matrix</a> </span><span>|</span>
<span><a href="#">Gauss Jordan</a> </span><span>|</span>
<span><a href="#">Gauss Elimination</a> </span>
</div>
</div>
<!-- ----- Footer----- -->
<script src="js/script.js"></script>
</body>
</html>