Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 558 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 558 Bytes

<div> block art

A fun thing I made to practice JavaScript DOM manipulation. Visit the web page to try... It's strangely addicting!

<div> block art: click to create and change!

Fun fact: the initial html <body> for this is barely 8 lines:

<header>
  <h1>&lt;div&gt; block art</h1>
  <p>Click on boxes to split them and randomize their color!</p>
</header>

<section>
  <div class="first art"></div>
</section>

<script src="div-art.js"></script>