Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Fake Art Theory Generator</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- margin: 20px;
- padding: 20px;
- background-color: #f4f4f9;
- }
- button {
- padding: 10px 20px;
- font-size: 16px;
- cursor: pointer;
- }
- textarea {
- width: 100%;
- height: 200px;
- margin-top: 20px;
- padding: 10px;
- font-family: monospace;
- }
- </style>
- </head>
- <body>
- <h1>Fake Art Theory Generator</h1>
- <p>Click the button below to generate some random fake art theory!</p>
- <button onclick="generateArtTheory()">Generate Theory</button>
- <textarea id="artTheory" readonly></textarea>
- <script>
- const conceptualWords = [
- "theory", "concept", "framework", "paradigm", "discourse",
- "aesthetics", "semiotics", "ontology", "epistemology", "praxis"
- ];
- const nouns = [
- "artwork", "medium", "viewer", "artist", "institution",
- "canon", "practice", "context", "critique", "representation"
- ];
- const verbs = [
- "constructs", "questions", "intersects", "deconstructs",
- "engages", "challenges", "defines", "translates", "frames", "negotiates"
- ];
- const adjectives = [
- "postmodern", "contextual", "critical", "conceptual", "theoretical",
- "aesthetic", "institutional", "pluralistic", "deconstructive", "transdisciplinary"
- ];
- const prepositions = [
- "of", "in", "with", "through", "by",
- "for", "against", "on", "around", "between"
- ];
- function generateArtTheory() {
- let text = '';
- for (let i = 0; i < Math.floor(Math.random() * 5) + 3; i++) { // Generate between 3 and 7 sentences
- const randomAdjective1 = adjectives[Math.floor(Math.random() * adjectives.length)];
- const randomConceptualWord = conceptualWords[Math.floor(Math.random() * conceptualWords.length)];
- const randomNoun1 = nouns[Math.floor(Math.random() * nouns.length)];
- const randomVerb = verbs[Math.floor(Math.random() * verbs.length)];
- const randomAdjective2 = adjectives[Math.floor(Math.random() * adjectives.length)];
- const randomNoun2 = nouns[Math.floor(Math.random() * nouns.length)];
- const randomPreposition = prepositions[Math.floor(Math.random() * prepositions.length)];
- text += `The ${randomAdjective1} ${randomConceptualWord} of ${randomNoun1} ${randomVerb} the ${randomAdjective2} ${randomNoun2} ${randomPreposition} ${adjectives[Math.floor(Math.random() * adjectives.length)]} ${nouns[Math.floor(Math.random() * nouns.length)]}.\n`;
- }
- document.getElementById('artTheory').value = text;
- }
- </script>
- </body>
- </html>e
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement