Files
EMVs-Creative-coding/website/index.html
2026-06-08 10:33:47 +02:00

74 lines
1.8 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Creative Coding Website</title>
</head>
<body>
<h1>Rectangles... Just rectangles</h1>
<div>
<iframe
src="/Week-1/rectangles.html"
style="height: 800px"
scrolling="no"
></iframe>
</div>
<h1>Images</h1>
<h3>styles (non-interactive):</h3>
<div>
<iframe src="/Week-2/Pictures/styles.html" style="height: 170px"></iframe>
</div>
<h3>basic image</h3>
<div>
<iframe
src="/Week-2/Pictures/image.html"
style="height: 815px"
scrolling="no"
></iframe>
</div>
<h3>Image Filter</h3>
<div>
<iframe
src="/Week-2/Pictures/image-filter.html"
style="height: 620px"
></iframe>
</div>
<h3>transformations (non-interactive)</h3>
<p>build entirely using p5.js math</p>
<div>
<iframe
src="/Week-2/Pictures/transformations.html"
style="height: 800px"
scrolling="no"
></iframe>
</div>
<h1>Shapes</h1>
<h3>interacive Shapes</h3>
<div>
<iframe
src="/Week-2/Shapes/interactive-shapes.html"
style="height: 1400px"
scrolling="no"
></iframe>
</div>
<h3>Bouncing DVD-type shape</h3>
<div>
<iframe
src="/Week-2/Shapes/moving-shapes.html"
style="height: 800px"
scrolling="no"
></iframe>
</div>
<h1>L-system</h1>
<div>
<iframe src="/Week-4/l-system.html" style="height: 600px"></iframe>
</div>
<h1>Markov Chain</h1>
<div>
<iframe src="/Week-4/markov-chain.html" style="height: 600px"></iframe>
</div>
</body>
</html>