-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (52 loc) · 2.15 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Damians Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="main-nav">
<ul class="nav">
<li class="name">Damian</li>
<li><a href="index.html">Home</a></li>
<li><a href="pages/experience.html">Experience</a></li>
<li><a href="pages/travel.html">Travel</a></li>
<li><a href="pages/early-life.html">Early Life</a></li>
</ul>
</div>
<header>
<img src="images/header-thepuzzlers-blog-damian-hutter.jpg" alt="Damian in New Zealand" class="profile-image">
<h1 class="tag name">Hello, I’m Damian.</h1>
<p class="tag location">My home? Today here, tomorrow there</p>
</header>
<main class="flex">
<div class="card">
<h2>Background</h2>
<p>Started out as a chef the path of life led to where I am now. Thanks to studies in business administration and graphic design I'm running my own company for webd- and print design.</p>
<p>Why I'm trying out the Techdegree from Treehouse? To reach out to new knowledge.</p>
<img src="images/content-thepuzzlers-blog-mountain.jpg" alt="Mountain in New Zealand" class="card-background-img">
</div>
<div class="card">
<h2>Goals</h2>
<p>Focus right now is on Front-End-Development. Regarding to:</p>
<ul class="skills">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
<p>Let's see what this course has to offer.</p>
<img src="images/the-puzzlers-logo.svg" alt="Puzzlers Logo" class="card-skills-img">
</div>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/damianhutter" class="social twitter">Twitter</a></li>
<li><a href="https://github.com/ThePuzzlers" class="social github">Github</a></li>
</ul>
<p class="copyright">Copyright 2017, Damian</p>
</footer>
</body>
</html>