-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (69 loc) · 3.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Daniela Favero</title>
<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=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" type="image/png" href="img/favicon.png"/>
</head>
<body>
<header>
<ul class="header-menu">
<li class="header-text header-text--clicked"><a class="header-link" href="">Home</a></li>
<li class="header-text"><a class="header-link" href="mac0499">TCC</a></li>
<li class="header-text"><a class="header-link" href="blog">Blog</a></li>
</ul>
</header>
<div class="container">
<h1 class="center-title">welcome!</h1>
<div>
<svg class="zdog-canvas duck" width="480" height="480"></svg>
<script src="https://unpkg.com/zdog@1/dist/zdog.dist.min.js"></script>
<script src="js/duck.js"></script>
</div>
<div>
<p class="intro">I'm Daniela Favero, a Computer Science undergrad @ IME-USP. I believe that code, society and art are meant to be together.</p>
</div>
<div class="stuff">
<h2>fun stuff made with js:</h2>
<ul>
<li class="card">
<a href="fourier.html">FOURIER</a>
</li>
<li class="card">
<a href="terrain.html">3D TERRAIN</a>
</li>
<li class="card">
<a href="chick.html">FANCY CHICK</a>
</li>
<li class="card">
<a href="fractais.html">MANDELBROT</a>
</li>
</ul>
</div>
</div>
<footer>
<ul>
<li class="social">
<a href="http://github.com/danigfavero" target="_blank">
<img class="icon" src="img/github.png" onmouseover="this.src='img/github-orange.png';" onmouseout="this.src='img/github.png';"/>
</a>
</li>
<li class="social">
<a href="http://linkedin.com/in/danigfavero" target="_blank">
<img class="icon" src="img/linkedin.png" onmouseover="this.src='img/linkedin-orange.png';" onmouseout="this.src='img/linkedin.png';"/>
</a>
</li>
<li class="social">
<a href="http://lattes.cnpq.br/4380746598220062" target="_blank">
<img class="icon" src="img/lattes.png" onmouseover="this.src='img/lattes-orange.png';" onmouseout="this.src='img/lattes.png';"/>
</a>
</li>
</ul>
<p class="copyright">Made with ♥ by Daniela Favero</p>
</footer>
</body>
</html>