-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
57 lines (55 loc) · 2.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About</title>
<link rel="stylesheet" href="./styles/style.min.css">
<script src="./js/nav.js" defer></script>
</head>
<body>
<nav>
<div class="logo">
<a href="./index.html"> <h4>Péter Tauber</h4></a>
</div>
<ul class="nav-links">
<li><a href="./about.html" class="active">About</a></li>
<li><a href="./prints.html">Prints</a></li>
<li><a href="./paintings.html">Paintings</a></li>
<li><a href="./sculptures.html">Sculptures</a></li>
<li><a href="http://rostbrand.com" target="_blank">Design</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<section class="about" id="about">
<div class="text">
<p>In my work I focus on the different appearances of decay and the associations surrounding it. I am looking for the ideal form of incompleteness as well as completeness within decay. The imagery of comics is timeless and universal therefore it provides me with a great range of freedom. By now I have a different perspective on comics. They present me with the ideal raw material for dealing with topics like fear, confusion, loss of identity and hero cults. In my work the world of the superheroes is upside down, balancing between chaos and order. </p>
<!-- <p>
Mein Hauptaugenmerk lege ich auf die verschiedenen Erscheinungen des Zerfalls und die mit ihr verbundenen Assoziationen. Ich suche so die ideale Form der Unvollständigkeit sowie die Vollständigkeit im Zerfall.
Die Bildsprache der Comics ist zeitlos und universell und bietet einen großen Spielraum für mich.
Mittlerweile habe ich eine andere Sichtweise auf Comics. Die liefern mir den idealen Rohstoff um Themen wie Angst, Verwirrung, Identitätsverlust oder Heldenkult zu bearbeiten.
Bei mir steht die Welt der Superhelden Kopf , balancierend zwischen Chaos und Ordnung. </p> -->
<button><a href="./contact.html">Contact Me</a></button>
</div>
<div class="image">
<img src="./img/peti.jpg" alt="Peter Tauber" id="peti">
<div class="card-text">
<ul>
<li>
Born in Budapest 1983
</li>
<li>2010 -2017 study on the Academy of Fine arts
Vienna in the class of Prof. Daniel Richter.</li>
<li>Currently lives and works in Vienna, Austria.</li>
</ul>
</div>
</div>
</section>
</body>
</html>