-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (61 loc) · 2.42 KB
/
index.html
File metadata and controls
66 lines (61 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="resources/fci.png">
<link rel="stylesheet" href="css/global.css">
</link>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CS-Math Society</title>
</head>
<body>
<div class="fade">
<div class="logo"> <img src="resources/fci.png" alt="fci logo"> </div>
<div class="title"> <a href=https://github.com/cs-math/cs-math.github.io target=”_blank”>CS-Math Society</a>
</div>
<div class="container">
<h3>Basic Projects</h3>
<div>
<a href="html/solver.html" class="nav-button">Equation Solver</a>
</div>
<div>
<a href="html/stat.html" class="nav-button">Statistics Calculator</a>
</div>
<div>
<a href="html/fitting.html" class="nav-button">Curve Fitting</a>
</div>
<h3>Linear Algebra</h3>
<div>
<a href="html/matrix.html" class="nav-button">Matrices Calculator</a>
</div>
<div>
<a href="html/system.html" class="nav-button">System of Equations</a>
</div>
<h3>About Us</h3>
<p>
CS-Math Society is an organization created in Cairo University, Faculty of Computers and Artificial
Intelligence to encourage students to collaborate with each other and improve their mathematics and
Computer Science skills.
</p>
<h3>Team members</h3>
<p>
Omar Adel Abdel Hamid Ahmed Brikaa - 20206043<br />
Mostafa Hesham Ragab Allam - 20206126<br />
Ali Esmat Ahmed Orfi - 20206123<br />
Ahmed Wael Nagy Wanas - 20206008<br />
</p>
<h3>Under the supervision of</h3>
<p>Dr. Eng. Mostafa Reda A. El Tantawi</p>
<h3>Helpful references</h3>
<p>
<a href="https://quarticequations.com/Cubic.pdf" target="_blank">
Practical algorithms for solving a cubic equation
</a><br />
<a href="https://quarticequations.com/Quartic.pdf" target="_blank">
Practical algorithms for solving a quartic equation
</a>
</p>
</div>
</div>
</body>
</html>