-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
26 lines (26 loc) · 1 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<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>JS Basics 🚀</title>
<link rel="stylesheet" href="resources/style.css" />
<script src="0_introduction.js" defer></script>
<script src="1_datatypes.js" defer></script>
<script src="2_functions.js" defer></script>
</head>
<body>
<div id="main">
<div class="tarjeta">
<div class="tarjeta-img-container">
<img src="resources/js.webp" alt="daily dose of hot js ☕️" />
</div>
<div class="tarjeta-content">
<h1>Aprendiendo JavaScript Básico</h1>
<p>Esta página es el punto de entrada para ejecutar todos los scripts que se vayan creando</p>
</div>
</div>
</div>
</body>
</html>