-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (46 loc) · 1.21 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="home.css">
<title>Xícara de café</title>
</head>
<body>
<div class="layout">
<header>
<p>Aceita uma xícara de café?</p>
</header>
<section>
<nav id="navegador">
<div> <img id='imgnav' src="img_nav.png"/> </div>
<div> <a href="index.html"> Home</a></div>
<div> <a href="cafe.html">Café</a> </div>
<div><a href="passandocafe.html">Passando seu café</a></div>
</nav>
<article id="content">
</article>
</section>
<footer>
</footer>
</div>
<script src="three.r95.min.js"></script>
<script src="vanta.fog.min.js"></script>
<script>
VANTA.FOG({
el: "#content",
mouseControls: true,
touchControls: true,
minHeight: 200.00,
minWidth: 200.00,
highlightColor: "#592715",
midtoneColor: "#a64914",
lowlightColor: "#732002",
baseColor: "#d98841",
blurFactor: 0.27,
speed: 0.40,
zoom: 0.40
})
</script>
</body>
</html>