-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
30 lines (28 loc) · 870 Bytes
/
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
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8">
<script>document.documentElement.className="js"</script>
<title>Bartosz Szopka</title>
<link href="//fonts.googleapis.com/css?family=IM+Fell+DW+Pica&subset=latin" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<section id="wrapper">
<h1><span class="firstname">Barto<span class="sz">sz</span></span><span class="nbsp"> </span><span class="lastname"><span class="sz">Sz</span>opka</span></h1>
<h2>
(web) developer,
(occasional) speaker,<br>
(wanna-be) writer,
(proud-to-be) dad
</h2>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
$(function(){
$("h1").delay(500).fadeIn(1000);
$("h2").delay(1500).fadeIn(1000);
});
</script>
</body>
</html>