-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfetchorder.html
55 lines (49 loc) · 1.61 KB
/
fetchorder.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=
, initial-scale=1.0"
/>
<title>Fetch & Order</title>
<link rel="stylesheet" href="styles.css" />
<!-- mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- font -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css" />
<!-- css -->
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/skeleton.css" />
<!-- scripts -->
<script src="scripts/fetchorder.js"></script>
<!-- icons -->
<link rel="icon" type="image/png" href="images/favicon.png" />
</head>
<body>
<header>
<!-- header container de paginas -->
<div class="container pos-center">
<div class="container">
<button><a href="/fetch-order">Fetch & Order</a></button>
<button><a href="/fetch-find">Fetch & Find</a></button>
<button><a href="/fetch-count">Fetch & Count</a></button>
<button><a href="/fastest-ship">Fastest Ship</a></button>
</div>
</div>
<!-- logo y titulo de actividad -->
<div class="container">
<img src="images/randomuser.png" alt="Randomuser" class="logo-ru" />
<h1>Fetch & Order</h1>
</div>
</header>
<nav></nav>
<!-- container de grid de cartas -->
<section class="sec-main">
<div class="grid-names" id="card-container"></div>
</section>
<!-- footer -->
<footer style="text-align: center;"></footer>
</body>
</html>