-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (24 loc) · 1.02 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
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="es">
<head>
<!-- Metadata mínima -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Metadata: describe mi proyecto -->
<meta name="author" content="Carlos Pizarro Morales">
<meta name="description" content="Describe tu proyecto en una línea">
<!-- LINK a FAVICON -->
<link rel="shortcut icon" href="./favicon.png" type="image/png">
<!-- LINK a CSS -->
<link rel="stylesheet" href="./assets/css/style.css">
<!-- LINK a JS de Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<!-- LINK a mi JS -->
<script src="./assets/js/index.js"></script>
<!-- Título -->
<title>fundamentos-javascript</title>
</head>
<body class="bg-dark pt-3">
<h1 class="text-center text-white">HOLA MUNDO</h1>
</body>
</html>