forked from antaresvalle/data-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudents.html
More file actions
47 lines (42 loc) · 1.53 KB
/
students.html
File metadata and controls
47 lines (42 loc) · 1.53 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Estudiantes</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
</head>
<body>
<header>
<div id="logo"><a id="logo" href="index.html"><img src="assets/images/Laboratoria_Logo_RGB_01.png"></a></div>
<nav>
<a href="overview.html" id="overview"><div>overview</div></a>
<a href="students.html"><div id="activo">estudiantes</div></a>
</nav>
<select id="sede-overview" name="Sede">
<option disabled selected value> sede </option>
<option value="AQP">Arequipa</option>
<option value="CDMX">Ciudad de México</option>
<option value="LIM">Lima</option>
<option value="SCL">Santiago de Chile</option>
</select>
</header>
<aside>
</aside>
<main>
<h1 class="students">ESTUDIANTES / HACKER EDITION</h1>
<form class="searchf" action="" method="">
<input type="text" name="text" class="search" placeholder="Buscar..." value="">
<i class="fa fa-search"></i>
</form>
<section id= 'studentsList'>
</section>
</main>
<!-- Base de datos -->
<script src="./js/data.js"></script>
<!-- Aquí va tus archivos JS -->
<script src="./js/students.js"></script>
<!-- <script src="./js/overview.js"></script> -->
</body>
</html>