-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
49 lines (36 loc) · 1.04 KB
/
aboutme.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
<!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>About the developer</h2><br>
<p>My name is Vicent García and I'm the web developer of Calc JS. If you want to know other projects developed by me, visit my GitHub repository clicking <a href="https://github.com/VicentGN">here</a></p><br>
</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>