-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
118 lines (85 loc) · 2.73 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Human Touch - About </title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@430;600&display=swap" rel="stylesheet">
<style>
/* Navigation bar */
ul {
list-style-type: none;
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
background-image: url(images/headerbackground.svg);
}
li {
float: left;
font-family: "Quicksand";
}
li a {
display: block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #fff;
}
ul.nav a:hover { color: white !important; }
#about {
float: right;
}
/* Body */
body {
background: black;
margin: 0;
padding: 0;
}
p {
font-family: "Quicksand";
color: white;
text-align: center;
}
a {
text-decoration: none;
color: rgb(54, 136, 202);
}
#text-container {
font-size: 16px;
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
}
@media (min-width: 600px) {
#text-container {
padding-top: 20vh;
padding-left: 20vh;
padding-right: 20vh;
}
}
</style>
</head>
<body>
<!-- Nav Bar -->
<ul>
<li id="title"><a href="./index.html"> HUMAN TOUCH / tactility in digital space / by charlotte roe </a></li>
<li id="about"><a href="./index.html" target="_blank">HOME</a></li>
</ul>
<!-- Main Text -->
<div id="text-container">
<p> Human Touch was created by <a href="https://www.ckjr.design" target="_blank"> Charlotte Roe</a> with the support of Huddersfield Contemporary Music Festival <a href="https://hcmf.co.uk/meet-the-young-curators/" target="blank">Young Curator's Programme</a>. </p>
<p>ABOUT THE PROJECT</p>
<p>Human Touch is a sound art meets sculpture project developed during and in response to the Covid-19 lockdown. The aims of the project are to explore how we can emulate tactility online, in a time where many are required to be physically apart from our friends and family.</p>
<p>The work aims to forge a connection between the senses of touch and sound, to illustrate a possible method of conveying touch between one person and another in a physically distanced world.
</p>
<p>ABOUT THE ARTIST</p>
<p>Charlotte Roe is a multi-disciplinary artist based in Huddersfield, UK.</p>
<p>She works in a variety of mediums and contexts to explore issues of the human relationship to objects, technology and material culture.</p>
</p>
<p> Thanks for visiting Human Touch, if you'd like to support the project you can donate <a href="https://www.buymeacoffee.com/charlotteroe" target ="_blank">here.</a></p>
</div>
</body>
</html>