Push after two months, oops

This commit is contained in:
Cametendo
2026-06-08 10:33:47 +02:00
parent 75299c9236
commit 8dfc70fde1
41 changed files with 2092 additions and 108 deletions

View File

@@ -3,7 +3,71 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
<title>Creative Coding Website</title>
</head>
<body></body>
<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>

11
website/style.css Normal file
View File

@@ -0,0 +1,11 @@
/* Reset body margins and prevent double scrollbars */
body {
margin: 0;
padding: 0;
}
iframe {
width: 100%;
height: 1400px;
border: none;
}