forked from marquez.juan/clase-10-ejercicios-de-repaso
19 lines
486 B
HTML
19 lines
486 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Ejercicio 4</title>
|
|
<link rel="stylesheet" href="estilo.css">
|
|
</head>
|
|
<body>
|
|
<h1>Ejercicio 4</h1>
|
|
|
|
<button id="restar">Restar</button>
|
|
<button id="sumar">Sumar</button>
|
|
<p>Contador: <span id="valor">0</span></p>
|
|
|
|
<script src="ejercicio4.js"></script>
|
|
</body>
|
|
</html>
|