20 lines
483 B
HTML
20 lines
483 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>Ejercicio 4</title>
|
|
<link rel="stylesheet" href="estilo.css">
|
|
</head>
|
|
<body>
|
|
<h1>Ejercicio 4</h1>
|
|
<p>
|
|
<button id="restar">Restar</button>
|
|
<span id="contador">0</span>
|
|
<button id="sumar">Sumar</button>
|
|
</p>
|
|
|
|
<script src="ejercicio4.js"></script>
|
|
</body>
|
|
</html>
|