-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1021 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (27 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dark Mode</title>
<link rel="stylesheet" href="index.css" />
</head>
<body class="claro" data-theme="light">
<div class="contenedor" id="contenedor">
<h1>Bienvenido al sitio de Prueba</h1>
<h2>Para Dark Mode con CSS y JS Puro</h2>
<h2>Y con localStorage para guardar las preferencias de usuario</h2>
<h3>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia
voluptatem, fuga nam deserunt dolores dolorem voluptas id! Consequuntur
quis nulla, ex odio exercitationem reprehenderit illo, ipsa asperiores
velit sunt deserunt!
</h3>
</div>
<button type="button" class="boton" id="boton">
Cambiar a modo oscuro
</button>
<script src="index.js"></script>
</body>
</html>