-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
166 lines (156 loc) · 5.61 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Surattack</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="stylesheet" type="text/css" href="stylesheets/screen.css">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script type="text/javascript" src="js/excanvas.compiled.js"></script>
<![endif]-->
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/animation.js"></script>
<script src="js/burbuja.js"></script>
<script src="js/pool.js"></script>
</head>
<body>
<section id="intro">
<header id="header">
<div class="wrap">
<div id="logo">
<a href="#"><img src="img/logo_srtk.svg" alt="Sur.attack"></a>
</div>
<nav id="menu">
<ul>
<li><a href="#works">Works</a></li>
<li><a href="#openlab">OpenLab</a></li>
<li><a href="#experiment">Experiments</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<div id="works">
<div class="wrap">
<h1>Creative MediaLab</h1>
<p>We are an active investigation medialab. We use new technologies to generate poetic spaces that confront magic with science. Just in the experimentation process we realize that they are plenty things to be created yet.</p>
<p><a class="btn" href="#">See Our Works</a></p>
</div>
</div>
</section>
<section id="openlab">
<div class="wrap">
<h1>We Love Share</h1>
<p class="info">We are an active investigation medialab. We use new technologies to generate poetic spaces that confront magic with science. Just in the experimentation process we realize that they are plenty things to be created yet.</p>
<p><a class="btn" href="#">See Our OpenLab</a></p>
</div>
</section>
<section id="experiment">
<canvas id="miCanvas" width="980" height="400"></canvas>
<div id="textocanvas">
<h1>We Experiment</h1>
<p>We are an active investigation medialab. We use new technologies to generate poetic spaces that confront magic with science. Just in the experimentation process we realize that they are plenty things to be created yet.</p>
<p><a class="btnexp" href="#">See our Experiments</a></p>
</div>
</section>
<section id="about">
<div class="wrap">
<h1>Say Hello To My Little Nerds</h1>
<ul>
<li>
<figure>
<img src="img/coso.png" alt="">
<figcaption>
<h3>@Necsoft</h3>
<p>Pirate, Nerd, Creative Coder</p>
<a href="#" class="btn mini">Hello!</a>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="img/coso.png" alt="">
<figcaption>
<h3>@Necsoft</h3>
<p>Pirate, Nerd, Creative Coder</p>
<a href="#" class="btn mini">Hello!</a>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="img/coso.png" alt="">
<figcaption>
<h3>@Necsoft</h3>
<p>Pirate, Nerd, Creative Coder</p>
<a href="#" class="btn mini">Hello!</a>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="img/coso.png" alt="">
<figcaption>
<h3>@Necsoft</h3>
<p>Pirate, Nerd, Creative Coder</p>
<a href="#" class="btn mini">Hello!</a>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="img/coso.png" alt="">
<figcaption>
<h3>@Necsoft</h3>
<p>Pirate, Nerd, Creative Coder</p>
<a href="#" class="btn mini">Hello!</a>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="img/coso.png" alt="">
<figcaption>
<h3>@Necsoft</h3>
<p>Pirate, Nerd, Creative Coder</p>
<a href="#" class="btn mini">Hello!</a>
</figcaption>
</figure>
</li>
</ul>
</div>
</section>
<section id="contact">
<div class="wrap">
<h1>get in touch with us</h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
<div id="contact-form">
<form action="send_mail" method="get">
<div id="infouser">
<fieldset>
<label for="name" id="icon-name"></label>
<input type="text" id="name" />
</fieldset>
<fieldset>
<label for="mail" id="icon-mail"></label>
<input type="text" id="mail" />
</fieldset>
</div>
<div id="message">
<fieldset>
<label for="comment" id="icon-comment"></label>
<textarea name="comment" id="comment"></textarea>
</fieldset>
</div>
</form>
<input type="submit" class="btn send" value="Enviar"/>
</div>
</div>
</section>
<script src="js/scroll.js"></script>
</body>
</html>