-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Listado de productos </title>
<link rel="shortcut icon" href="img/camiseta.png" type="img/png">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/grilla.css" type="text/css">
<link rel="stylesheet" media="only screen and (orientation: landscape)" href="css/landscape.css" type="text/css">
<link rel="stylesheet" media="only screen and (min-width: 768px)" href="css/tablet.css" type="text/css">
<link rel="stylesheet" media="only screen and (min-width:768px) and (orientation: landscape)" href="css/tablet-ls.css" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css">
</head>
<body>
<h1> Listado de productos </h1>
<p>Este es un inventario con los nuevos artículos deportivos disponibles para esta Temporada Primavera—Verano del vigente año 2023.</p>
<section id="table-content">
<table>
<thead>
<tr>
<th scope="row"> Producto </th>
<th scope="row"> Descripción </th>
<th scope="row"> Ver más </th>
</tr>
</thead>
<tbody> </tbody>
</table>
</section>
<script src="js/script.js"></script>
</body>
</html>