mirror of
https://github.com/CristianCruz0309/proyectos-curso-javascript.git
synced 2026-08-15 02:50:10 +00:00
18 lines
518 B
HTML
18 lines
518 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Registro Automotor</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<script src="script.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Registro Automotor</h1>
|
|
<button onclick="mostrarAutomoviles()">Mostrar Automóviles</button>
|
|
<ul id="listaAutomoviles" class="lista"></ul>
|
|
</div>
|
|
</body>
|
|
</html>
|