A generator that comes up with random art studies for you
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>Study Generator</title>
5 <script src="javascript.js"></script>
6 </head>
7
8 <body>
9 <div align="center">
10 <h1>Study Generator</h1>
11 <br>
12 Generate a New Study! Click Any Button.
13 <br><br>
14 <div id="studyDisplay">
15 <br>
16 </div>
17 <div>
18 <br>
19 <button onclick="newGesture()">Gestures</button>
20 <button onclick="newProportion()">Proportions</button>
21 <button onclick="newAnatomy()">Anatomy</button>
22 </div>
23 <div>
24 <div>
25 <br>
26 Coming Soon
27 <br><br>
28 <button type="button" disabled onclick="newForm()">Forms</button>
29 <button type="button" disabled onclick="newComposition()">Composition</button>
30 <button type="button" disabled onclick="newValues()">Values</button>
31 <button type="button" disabled onclick="newColors()">Colors</button>
32 <button type="button" disabled onclick="newPerspective()">Perspective</button>
33 </div>
34 </div>
35
36 </body>
37
38</html>