-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (86 loc) · 3.43 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Taller 1</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="stylesheet.css" media="screen" />
</head>
<body>
<script type="module" src="./scripts/course.js" ></script>
<script type="module" src="./scripts/dataCourses.js" ></script>
<script type="module" src="./scripts/main.js"></script>
<div class="container">
<div class="row">
<div class="col-6">
<h1>Juan Alejandro Charry Gavilán</h1>
<img class="img-fluid max-width: 100% height: auto"
src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fclipground.com%2Fimages%2Fwhite-profile-icon-clipart-2.png&f=1&nofb=1"
alt="Avatar" id=imagen>
<table class="tableSquare">
<thead>
<tr>
<th>Datos Personales</th>
</tr>
</thead>
<tbody>
<tr>
<td class="tableRows">Código</td>
<td class="tableRows">201923748</td>
</tr>
<tr>
<td class="tableRows">Cédula</td>
<td class="tableRows">1000806161</td>
</tr>
<tr>
<td class="tableRows">Edad</td>
<td class="tableRows">20 Años</td>
</tr>
<tr>
<td class="tableRows">Dirección</td>
<td class="tableRows">Crr 12 # 45 - 45</td>
</tr>
<tr>
<td>Teléfono</td>
<td>31928747</td>
</tr>
</tbody>
</table>
</div>
<div class="col-4">
<h2>Cursos Actuales</h2>
<form style="margin:10px;">
<div class="form-row">
<div class="col">
<input type="text" class="form-control" id="search-box" placeholder="Filtrar por nombre">
</div>
<div class="col">
<button type="button" id="button-filterByName" class="btn btn-success">Aplicar</button>
</div>
</div>
</form>
<table class="table">
<thead class="thead-dark">
<tr>
<th>Curso</th>
<th>Profesor</th>
<th>Créditos</th>
</tr>
</thead>
<tbody id="courses">
</tbody>
</tbody>
</table>
<h3>Total Créditos: 20</h3>
</div>
</div>
<br>
<br>
<br>
<br>
<br>
</div>
</body>
</html>