-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
72 lines (68 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Inicio</title>
<link rel="stylesheet" href="estilos/estilosresponsive.css" />
<script src="https://kit.fontawesome.com/85f636b7ea.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="header">
<a href="/index.html">
<img class="logo" src="imagenes/share_before_waste_logo.png" alt="logo" />
</a>
<a href="index.html">INICIO</a>
<a href="integrantes.html">INTEGRANTES</a>
<a href="proyecto.html">PROYECTO</a>
<a href="avances.html">AVANCES</a>
<a href="sitio_del_proyecto.html">SITIO DEL PROYECTO</a>
</header>
<header class="header-mobile">
<a class="logo-link" href="/index.html">
<img class="logo" src="imagenes/share_before_waste_logo.png" alt="logo" />
</a>
<input class="side-menu" type="checkbox" id="side-menu" />
<label class="hamb" for="side-menu"><i class="fa-solid fa-bars"></i></label>
<nav class="nav">
<ul class="menu">
<li><a class="selected" href="index.html">INICIO</a></li>
<li><a href="integrantes.html">INTEGRANTES</a></li>
<li><a href="proyecto.html">PROYECTO</a></li>
<li><a href="avances.html">AVANCES</a></li>
<li><a href="sitio_del_proyecto.html">SITIO DEL PROYECTO</a></li>
</ul>
</nav>
</header>
<!-- <header class="header">
<input id="burger" type="checkbox" />
<label for="burger" class="burger"> ☰ </label>
<div class="navbar">
<a href="/index.html">
<img class="logo" src="imagenes/share_before_waste_logo.png" alt="logo"/>
</a>
<a href="index.html">INICIO</a>
<a href="integrantes.html">INTEGRANTES</a>
<a href="proyecto.html">PROYECTO</a>
<a href="avances.html">AVANCES</a>
<a href="sitio_del_proyecto.html">SITIO DEL PROYECTO</a>
</div>
</header> -->
<main>
<div class="contenedor">
<div class="columna col-2 columna-home">
<p><b> Número de Equipo:</b> 5</p>
<p><b> Año y curso:</b> Primer año - 450948 - Turno tarde</p>
<p><b>Materia:</b> Diseño y Desarrollo Web</p>
<p><b>Docente:</b> Litovicius Patricia Carina</p>
</div>
<div class="columna col-2">
<img class="imagen" src="imagenes/foto_home.png" />
</div>
</div>
</main>
<footer>
<p>© 2023 Todos los derechos reservados.</p>
</footer>
</body>
</html>