-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SigraWeb</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header e logo -->
<header>
<img src="./assets/sigra.png" alt="Logomarca">
</header>
<!-- Sidebar -->
<div class="sidebar">
<button onclick="showInstructions()" class="btn btn-primary">
<i class="iconn fas fa-info-circle"></i>
<span class="text">Instruções</span>
</button>
<button onclick="showProducts()" class="btn btn-primary">
<i class="iconn fas fa-shopping-cart"></i>
<span class="text">Produtos</span>
</button>
</div>
<div class="content" id="content"></div>
<!-- Footer -->
<footer>
<span class="text"><span id="year"></span> © Design by Airton Jr.</span>
</footer>
<script src="script.js"></script>
</body>
</html>