-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (56 loc) · 2.03 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../styles/style.css" />
<link
rel="stylesheet"
href="../libraries/font-awesome-4.7.0/css/font-awesome.min.css"
/>
<title>Trabalho 01 - Computação Gráfica</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Sono:wght@200&display=swap");
</style>
</head>
<body>
<header>
<div class="header-container">
<h1>Home</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="pages/about.html">About</a></li>
<li><a href="pages/contact.html">Contact</a></li>
<li>
<a href="pages/cart.html">
<i class="fa fa-shopping-cart"></i>
</a>
</li>
</ul>
</nav>
</div>
</header>
<canvas id="background"></canvas>
<div class="container-items" id="container-items"></div>
<footer>
<div class="footer-container">
<small>
Copyright © Juathan Coelho Duarte | [email protected]
</small>
</div>
</footer>
<script src="https://webglfundamentals.org/webgl/resources/webgl-utils.js"></script>
<script src="https://webglfundamentals.org/webgl/resources/m4.js"></script>
<script src="https://webgl2fundamentals.org/webgl/resources/twgl-full.min.js"></script>
<script src="https://webgl2fundamentals.org/webgl/resources/m4.js"></script>
<script src="https://webgl2fundamentals.org/webgl/resources/flattened-primitives.js"></script>
<script src="../js/webgl.js"></script>
<script src="../js/utils.js"></script>
<script src="../js/parses.js"></script>
<script src="../js/object.js"></script>
<script src="../js/background.js"></script>
<script type="module" src="../js/cart.js"></script>
</body>
</html>