-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
74 lines (67 loc) · 3.93 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Libre+Barcode+128+Text&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style/output.css">
<title>About</title>
</head>
<body class="bg-black font-serif text-white">
<div class="flex justify-between">
<h1 class="text-5xl hover:text-green-400 active:text-black font-barcode ml-5 mt-5">
<a href="/">Neil B Patel?</a>
</h1>
<div class="flex justify-around">
<h2 class="text-2xl hover:text-green-400 active:text-black underline mt-5 mr-20">
<a href="./original.html">Original</a>
</h2>
<h2 class="text-2xl hover:text-green-400 active:text-black underline mt-5 mr-20">
<a href="./index.html">Remix</a>
</h2>
<h2 class="text-2xl hover:text-green-400 active:text-black underline mt-5 mr-20">
<a href="./credits.html">Credits</a>
</h2>
</div>
</div>
<h2 class="border-solid rounded-lg border-y-2 border-white p-5 text-3xl text-bold text-green-400 flex justify-center mt-10 mb-14">
ABOUT.txt
</h2>
<div class="flex">
<div class="grid grid-cols-1 text-lg ml-28 mr-28">
<div class="mb-10 leading-10">
<div>
Within my thrifted copy of "The Celestine Prophecy," there are private scrawlings of the previous owner(s).
These are responses to intimate writing prompts, so I felt as though it was inappropriate for these words to be reused or abused.
From this discovery and discussions regarding “Document” and ownership of creative works, I created this project.
</div>
</div>
<div class="mb-10 leading-10">
<div>
The <a class="hover:text-green-400 active:text-black underline" href="./original.html">Original</a> poem stems from in-class discussions.
It considers creators (of any kind), their inspirations and predecessors, source material, and the complications sprung from the Western notion of ownership.
I provide no answers to these issues. Just another question.
How should creators consider our shared struggles of sourcing and attribution, ownership and claim, and respect and responsibility?
</div>
</div>
<div class="mb-10 leading-10">
<div>
The <a class="hover:text-green-400 active:text-black underline" href="./index.html">Remix</a> poem is fleeting, unique, and questionable in ownership.
The words that are replaced are those from the table of contents of "The Celestine Prophecy."
Each word is replaced with a unique, random word from a list of nouns, verbs, adjectives, and adverbs.
</div>
</div>
<div class="mb-10 leading-10">
<div>
The inspiration for this project is a poem remix website titled "Forever Gwen Brooks" by
<a class="hover:text-green-400 active:text-black underline" href="https://www.lillianyvonnebertram.com/">Lillian-Yvonne Bertram</a>.
The source of the aforementioned wordlists, Bertram's project, and a Wikipedia entry of "The Celestine Prophecy" can be found on <a class="hover:text-green-400 active:text-black underline" href="./credits.html">Credits</a>.
</div>
</div>
</div>
</div>
</body>
</html>