-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
176 lines (148 loc) · 4.2 KB
/
index.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE HTML>
<html>
<head>
<title>Shiffman ICM Redesign</title>
<link rel="stylesheet" href="http://natureofcode.com/css/fonts.css"/>
<link href='http://fonts.googleapis.com/css?family=Karla:400,700' rel='stylesheet' type='text/css'>
<!--<link rel="stylesheet" href="/css/style.css">-->
<style>
* {
box-sizing: border-box;
}
#header {
position: absolute;
top: 0%;
left: 0%;
width: 100%;
height: 60px;
background-color: #FFC759;
}
#nav {
position: absolute;
top: 60px;
left: 0%;
width: 18%;
height: 1500px;
text-align: left;
background-color: #74B3A7;
}
#homeVid {
position: absolute;
box-shadow: 5px 10px 10px #CBC9CF;
top: 60px;
left: 18%;
width: 82%;
height: 426px;
background-color: #ececec;
}
#homeContent {
position: absolute;
top: 480px;
left: 18%;
width: 82%;
height: 200px;
padding-top:10px;
padding-left: 20px;
margin: 10px;
padding-right: 40px;
}
.list {
color: #424143;
font-weight: bold;
font-family: 'Karla', sans-serif;
font-size: 1.2em;
padding: 30px;
line-height: 200%;
}
.introVid {
position: absolute;
left: 17.25%;
}
ul {
color: #424143;
font-weight: bold;
font-family: 'Karla', sans-serif;
font-size: 1.2em;
padding: 4px;
}
p {
color: #807F83;
font-family: 'Karla', sans-serif;
font-size: .9em;
}
h1 {
color:#424143;
font-family:'Karla', sans-serif;
font-size: 1.4em;
text-align: center;
}
#gallery {
position: absolute;
width: 24%;
top: 686px;
left: 20.5%;
height: 200px;
box-shadow: .5px .5px 5px #CBC9CF;
overflow: hidden;
}
#gallery2 {
position: absolute;
width: 24%;
top: 686px;
left: 45.5%;
height: 200px;
box-shadow: .5px .5px 5px #CBC9CF;
overflow: hidden;
}
#gallery3 {
position: absolute;
width: 24%;
top: 686px;
left: 70.5%;
height: 200px;
box-shadow: .5px .5px 5px #CBC9CF;
overflow: hidden;
}
#logo {
position: absolute;
top: 5px;
left: 30px;
}
</style>
</head>
<body>
<div id="header">
<h1>ICM VIDEO SERIES</h1>
</div>
<div id="logo"><img src="processing.png" alt=Logo</a></div>
<div id="nav">
<div class="list">
>INTRODUCTION<br>
>GETTING SET UP<br>
>INTERACTION<br>
>VARIABLES<br>
>CONDITIONALS<br>
>LOOPS<br>
>FUNCTIONS<br>
>OOP<br>
>ARRAYS<br>
</div>
</div>
<div id="homeVid">
<img class="introVid" src="introVid.jpg" alt=Intro Video height="426"</a>
</div>
<div id="homeContent">
<p><strong>What is Processing and why learn it? </strong>Processing is a programming language and development environment that promotes software literacy within the visual arts and visual literacy within technology. If you don't know programming, it's a great language to start with: it's visual, fun, there's excellent documentation (online + several books), and there's a vibrant online community of people asking and answering questions. If you do know programming, it's great for image processing, data visualization, interactive programs, and open GL integration, and more.<br></p>
<p><strong>About this site: </strong>These videos were made by Daniel Shiffman for ICM (Introduction to Computational Media), a class that teaches Processing to first-year graduate students at NYU's ITP, an interdisciplinary arts and technology program sometimes called "the center for the recently possible."<br> The videos also loosely follows his book <a href="http://www.amazon.com/gp/product/0123736021/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=0123736021&linkCode=as2&tag=shiffman-20">Learning Processing.</a></p>
<p><font size="4" font-weight="bold">PROJECTS MADE WITH PROCESSING!</p>
</div>
<div id="gallery">
<a href="http://everyware.kr/home/portfolio/oasis/"><img src="gallery0.jpg" alt=Oasis</a>
</div>
<div id="gallery2">
<a href="http://www.quayola.com/strata3/"><img src="gallery1.jpg" alt=Strata3</a>
</div>
<div id="gallery3">
<a href="http://vimeo.com/19007123"><img src="gallery2.jpg" alt=Replica</a>
</div>
</body>