-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestudianteB.html
More file actions
126 lines (115 loc) · 3.72 KB
/
Copy pathestudianteB.html
File metadata and controls
126 lines (115 loc) · 3.72 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Perfil - Leonel Alexander Munguia Noyola</title>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css"
rel="stylesheet"
/>
<style>
body {
background-color: #f8f9fa;
}
.profile-card {
background: white;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
margin-top: 2rem;
}
.profile-header {
background: #495057;
color: white;
padding: 2rem;
text-align: center;
border-radius: 10px 10px 0 0;
}
.subject-item {
border-bottom: 1px solid #dee2e6;
padding: 0.8rem 0;
}
.subject-item:last-child {
border-bottom: none;
}
.back-btn {
background: #6c757d;
color: white;
text-decoration: none;
padding: 0.5rem 1.5rem;
border-radius: 5px;
}
.back-btn:hover {
background: #5a6268;
color: white;
}
</style>
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="profile-card">
<div class="profile-header">
<h1>Leonel Alexander Munguia Noyola</h1>
<p>Estudiante de ingeniería en desarrollo de software</p>
</div>
<div class="p-4">
<div class="mb-4">
<h4>Información Personal</h4>
<p><strong>Carnet:</strong> 2022MN650</p>
<p>
<strong>Carrera:</strong> ingeniería en desarrollo de software
</p>
<p><strong>Semestre:</strong> 6to Semestre</p>
<p><strong>Email:</strong> leonel.munguia@catolica.edu.sv</p>
</div>
<div class="mb-4">
<h4>Perfil del Estudiante</h4>
<p>
Interesado en el desarrollo de software con habilidades en
programación, análisis de sistemas y trabajo en equipo.
</p>
</div>
<div class="mb-4">
<h4>Materias Aprobadas</h4>
<div class="subject-item">
<strong>Aplicacion de principios de la etica social</strong> -
Nota: 9
</div>
<div class="subject-item">
<strong>Manejo de estructuras de datos</strong> - Nota: 9
</div>
<div class="subject-item">
<strong>Diseño de bases de datos </strong>
- Nota: 7.5
</div>
<div class="subject-item">
<strong>Desarrollo del pensamiento matemático</strong> - Nota:
9.5
</div>
<div class="subject-item">
<strong
>Desarrollo del pensamiento estadístico y
probabilístico</strong
>
- Nota: 8.3
</div>
<div class="subject-item">
<strong>Programación orientada a eventos</strong> - Nota: 9
</div>
<div class="subject-item">
<strong>Configuracion de redes informaticas</strong> - Nota:
10
</div>
</div>
<div class="text-center">
<a href="index.html" class="back-btn">Volver al Inicio</a>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>