25 lines
642 B
HTML
25 lines
642 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en" data-theme="light">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Que se yo</title>
|
||
|
|
<link rel="stylesheet" href="assets/css/style.css">
|
||
|
|
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<header class="header">
|
||
|
|
<h1>Testing</h1>
|
||
|
|
<button id="theme-toggle">Cambiar tema</button>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<main class="content">
|
||
|
|
<div class="card">
|
||
|
|
<h2>Titulo</h2>
|
||
|
|
<p>Lorem Ipsum dolor sit amet</p>
|
||
|
|
<a href="#">Enlace</a>
|
||
|
|
</div>
|
||
|
|
</main>
|
||
|
|
<script src="assets/js/index.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|