-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (41 loc) · 2.13 KB
/
index.html
File metadata and controls
49 lines (41 loc) · 2.13 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
<!DOCTYPE html>
<html lang="es">
<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="shortcut icon" href="https://cdn.pixabay.com/photo/2020/06/04/13/22/square-5258734_960_720.png" type="image/x-icon">
<meta name="robots" content="index,follow"/>
<meta name="keywords" content="HTML, CSS, JavaScript, DOM">
<meta name="author" content="Guadalupe Monge Barale">
<meta name="description" content="Proyecto de practica JavaScript y Manipulación del DOM. Permite calcular el area y perimetro de diferentes figuras geométricas" />
<meta name="image" content="./images-readme/math-javascript.png" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@guaditaemprende" />
<meta name="twitter:creator" content="@guaditaemprende" />
<meta property="og:url" content="https://github.com/GuadaMongeBarale/math-javascript" />
<meta property="og:title" content="Calculadora de Figuras Geométricas" />
<title>Math with JavaScript</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/desktop.css" media="screen and (min-width: 800px)" />
</head>
<body>
<header>
<nav>
<a href="https://github.com/GuadaMongeBarale" rel="noopener noreferrer" target="_blank"><img src="https://cdn.pixabay.com/photo/2015/11/03/08/53/calculator-1019743_960_720.jpg" alt="calcualdora"></a>
<a href="index.html">Home</a>
</nav>
<h1> Calculadora de Perímetro y Área de Figuras Geométricas</h1>
</header>
<main>
<section class="buttons">
<button type="button" class="square" onclick="draw('square')"></button>
<button type="button" class="triangle" onclick="draw('triangle')"></button>
<button type="button" class="circle" onclick="draw('circle')" ></button>
</section>
<section class="calculator">
</section>
</main>
<script src="./js/figures.js"></script>
</body>
</html>