-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (55 loc) · 1.34 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
<!doctype html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="screen.css">
<link href='http://fonts.googleapis.com/css?family=Alegreya:400italic,900italic,400,900' rel='stylesheet' type='text/css'>
<title>Sandor Weisz</title>
</head>
<body>
<header>
<h1>Sandor Weisz</h1>
<ul class="nav">
<li><a href="#family">Family</a></li>
<li><a href="#tsl">Starter League</a></li>
<li><a href="#puzzling">Puzzling</a></li>
</ul>
</header>
<div class="me">
<img src="me.jpg">
</div>
<section class="family" id="family">
<h2>Family</h2>
<ul>
<li class="sarah">
<img src="sarah.jpg">
<b>Sarah</b>
<i>wife</i>
</li>
<li class="ezra">
<img src="ezra.jpg">
<b>Ezra</b>
<i>son</i>
</li>
<li class="zella">
<img src="zella.jpg">
<b>Zella</b>
<i>daughter</i>
</li>
</ul>
</section>
<section class="tsl" id="tsl">
<h2>Starter League</h2>
<img src="html5.jpg">
<img src="css3.jpg">
</section>
<section class="puzzling" id="puzzling">
<h2>Puzzling</h2>
<img src="pie.jpg">
</section>
<footer>
© 2013 Sandor Weisz<br>
<a href="mailto:santheo@gmail.com">santheo@gmail.com</a>
</footer>
</body>
</html>