60 lines
927 B
Markdown
60 lines
927 B
Markdown
# Tarea 2 Web
|
|
|
|
`html`
|
|
`js`
|
|
`tag`
|
|
|
|
**Objetivo:**
|
|
|
|
Calculadora basica
|
|
|
|
**Parametros:**
|
|
|
|
- Que funcione
|
|
|
|
## **Importante:**
|
|
- Es codigo solo un index.html y un index.js
|
|
|
|
|
|
**Solo usar estas etiquetas HTML**
|
|
```html
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|
|
|
|
<select name="" id="" data-name="">
|
|
<option value="">/</option>
|
|
</select>
|
|
|
|
<input type="text" name="" id="" data-name="">
|
|
|
|
<button type="button" data-name=""></button>
|
|
|
|
<label for="" data-name=""></label>
|
|
|
|
<script src="index.js"></script>
|
|
```
|
|
|
|
**Referencia Java Script**
|
|
```
|
|
document.querySelector('');
|
|
.addEventListener("click", );
|
|
```
|
|
|
|
## Glosario
|
|
|
|
### Fuentes que puedes consultar
|
|
|
|
[w3schools](https://www.w3schools.com)
|
|
|
|
[youtube](https://www.youtube.com/)
|
|
|
|
[geeksforgeeks](https://www.geeksforgeeks.org/)
|