-
Notifications
You must be signed in to change notification settings - Fork 0
/
servicios.html
81 lines (74 loc) · 3.92 KB
/
servicios.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Transporte 2020-UTN</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap" rel="stylesheet"><!--porque de una trae la fuente mientras se va cargando el body-->
<link rel="stylesheet" href="css/normalize.css"><!--va primero porque es codigo que hizo otra persona y nostros lo vamos a modificar-->
<link rel="stylesheet" href="css/transporte2020.css">
</head>
<body>
<header>
<div class="holder">
<img src="img/logo.png" width="100" alt="Transporte X">
<h1>Transporte X</h1>
</div>
</header>
<nav>
<div class="holder">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="nosotros.html">Nosotros</a></li>
<li><a class="activo" href="servicios.html">Servicios</a></li>
<li><a href="galeria.html">Galeria</a></li>
<li><a href="novedades.html">Novedades</a></li>
<li><a href="contacto.html">Contacto</a></li>
</ul>
</div>
</nav>
<main class="holder">
<h2>Servicios</h2>
<div class="servicio">
<figure>
<img src="img/servicios/aereo.jpg" alt="Avion">
</figure>
<div class="info">
<h4>Transporte Aereo</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. </p>
</div>
</div>
<div class="servicio">
<figure>
<img src="img/servicios/maritimo.jpg" alt="Barco">
</figure>
<div class="info">
<h4>Transporte marítimo</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. </p>
</div>
</div>
<div class="servicio">
<figure>
<img src="img/servicios/terrestre.jpg" alt="Camión">
</figure>
<div class="info">
<h4>Transporte terrestre</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. </p>
</div>
</div>
<div class="servicio">
<figure>
<img src="img/servicios/ferroviario.jpg" alt="Camión">
</figure>
<div class="info">
<h4>Transporte ferroviario</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
</p>
</div>
</div>
</main>
<footer>
<p>Diseñado por Iriangel Quintero - © 2020</p>
</footer>
</body>
</html>