-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5.html
137 lines (117 loc) · 3.49 KB
/
5.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
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
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CNC-BOT DIBUJANTE</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
}
/* Estilo del menú vertical */
nav {
width: 200px;
background-color: #333;
height: 100vh;
position: fixed;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
border-bottom: 1px solid #444;
}
nav ul li a {
color: white;
text-decoration: none;
display: block;
padding: 15px;
font-size: 16px;
}
nav ul li a:hover {
background-color: #575757;
}
/* Estilo del contenido principal */
.content {
margin-left: 220px;
padding: 20px;
}
h1 {
font-size: 32px;
color: #333;
}
h2 {
font-size: 24px;
color: #555;
}
p {
font-size: 16px;
line-height: 1.6;
color: #666;
}
/* Estilo de las imágenes */
img {
max-width: 100%;
height: auto;
display: block;
margin: 20px 0;
}
/* Estilo para videos de YouTube */
.video-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 100%;
background: #000;
margin: 20px 0;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
</style>
</head>
<body>
<nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="2.html">Contexto</a></li>
<li><a href="3.html">Solución</a></li>
<li><a href="4.html">CASE</a></li>
<li><a href="5.html">Electronica</a></li>
<li><a href="6.html">Software</a></li>
<li><a href="7.html">Evidencias</a></li>
<li><a href="8.html">Conclusiones</a></li>
</ul>
</nav>
<!-- Contenido principal -->
<div class="content">
<h1 id="section1">DISEÑO DE IMPLEMENTACION ELECTRONICA</h1>
<h2 id="section2">DISEÑO EN TABLERO</h2>
<img src="imgs/diseñocircuito.jpg" alt="Imagen Ejemplo 1">
<h1 id="section3">DISEÑO DE LA PCB</h1>
<h2>DISEÑO ESQUEMATICO DEL CIRCUITO</h2>
<img src="Esquema y PCB/esquema.png" alt="Imagen Ejemplo 1">
<p><a href="Esquema y PCB/ESQUEMATICO.pdf">CLICK AQUI PARA VER EL PDF</a></p>
<h2>PCB LAYOUT</h2>
<img src="Esquema y PCB/pcb.png" alt="Imagen Ejemplo 2">
<h2>PCB MODELO 3D</h2>
<img src="Esquema y PCB/pcb3D.png" alt="">
<h2>PCB FABRICADA</h2>
<img src="imgs/PCB_F.jpg" alt="">
<img src="imgs/PCB_B.jpg" alt="">
<h2>PCB SOLDADA</h2>
<img src="imgs/sold_f.webp" alt="">
<img src="imgs/sold_b.webp" alt="">
</div>
</body>
</html>