-
Notifications
You must be signed in to change notification settings - Fork 0
/
pedidos.html
44 lines (42 loc) · 1.3 KB
/
pedidos.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="src/tailwind.css" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<header
class="bg-emerald-950 flex justify-between text-white p-4 px-6 sticky top-0 shadow-lg shadow-stone-800 z-40"
>
<div class="flex">
<a target="_blank" href="https://github.com/AlexSimao">
<img
src="./assets/logo/img-amp.svg"
alt="imagem Aleatória"
class="h-10"
/>
</a>
<a href="./"
><img
src="./assets/logo/hashtag.svg"
alt="Logo da Hashtag"
class="h-10"
/></a>
</div>
</header>
<main
class="bg-stone-200 flex justify-center gap-3 flex-wrap min-h-4/5 p-5"
></main>
<script src="./pedidos.js" type="module"></script>
</body>
</html>