Separado los contenidos de html, css y javascript en diferentes directorios \ Creado primera actividad de JavaScript
This commit is contained in:
25
JavaScript/A01-SAD/html.html
Normal file
25
JavaScript/A01-SAD/html.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user