This commit is contained in:
tuz 2026-03-28 22:37:59 -05:00
parent 048bece705
commit a67c98bfad
1 changed files with 59 additions and 0 deletions

59
task_1_web.md Normal file
View File

@ -0,0 +1,59 @@
# 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/)