-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (34 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Slab:ital,wght@1,100&family=Oswald&family=Yantramanav&display=swap"
rel="stylesheet"
/>
<!-- keep the line below for OpenProcessing compatibility -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.js"></script>
<script src="mySketch.js"></script>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="theContainer" class="container">
<div class="sidetext">
<h1>p5*js</h1>
<h2>
<a href="https://github.com/nbogie/p5-stacked-shaders-perlin-contours"
>Source on GitHub</a
>
</h2>
</div>
<article class="my-article">
<h1>Stacked Shaders</h1>
<h2>Shaders: GLSL (Perlin Noise), Control: p5.js</h2>
<section>
Drag with mouse to look around. Press "r" to auto-rotate.
</section>
</article>
</div>
</body>
</html>