-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeproject.html
53 lines (40 loc) · 1.34 KB
/
theproject.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>CalcJS</title>
<link rel="stylesheet" type="text/css" href="css/base.css">
<link rel="stylesheet" type="text/css" href="css/adicionales.css">
<link href="https://fonts.googleapis.com/css?family=Nunito&display=swap" rel="stylesheet">
</head>
<body>
<div id="page">
<header>
<h1>Calc JS</h1>
<h3>Bringing a web calculator to the world</h3>
</header>
<nav>
<ul>
<li><a href="index.html" id="inicio">Home / CE</a></li>
</ul>
</nav>
<main>
<article>
<h2>Welcome to Calc JS</h2><br>
<p>Calc JS is an online JavaScript calculator which allows you to do arithmetical and non-arithmetical operations using your web browser. It's main goal is to provide an accessible, centralized, simplified and open source virtual space for your daily mathematical operations.<br>
With a few clicks, you can sum, substract, multiply, divide, obtaining the pi number, power of a number and other stuffs in an easy way.</p><br>
<p><strong>Give it a try!</strong></p>
<br>
<p>The developer</p>
</article>
</main>
<footer>
<ul>
<li><a href="aboutme.html">About me</a></li>
<li>Calc JS - 2019</li>
<li><a href="theproject.html">The Project</a></li>
</ul>
</footer>
</div>
</body>
</html>