-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (43 loc) · 1.44 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!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">
<link rel="stylesheet" href="./assets/css/styles.css">
<title>CRUD - LocalStorage</title>
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="./">
<img src="./assets/img/logo-top-ucamp.png" width="80" height="28">
</a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false"
data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item">
Inicio
</a>
</div>
</div>
</nav>
<!-- NAVBAR -->
<!-- CONTAINER -->
<div class="container">
<h1>Haciendo uso de objetos de JS a HTML</h1>
<div id="dom"></div>
</div>
<!-- CONTAINER -->
<!-- JAVASCRIPT IMPORTS -->
<script src=" ./assets/js/navbar.js"></script>
<script src="./assets/js/main.js"></script>
</body>
</html>