-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (74 loc) · 2.82 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
78
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Falko Noe</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="icon" href="assets/images/favicon-32x32.png">
</head>
<body>
<div class="main-content-wrapper">
<div class="header-wrapper">
<div class="header-1">
<header>
<h1 class="my_name">Falko Noe</h1>
</header>
<nav class="navigation-bar">
<p class="nav-bar-text">
<a href="index.html">About</a>  |  
<a href="portfolio.html">Portfolio</a>  |  
<a href="contact.html">Contact</a>
</p>
</nav>
</div>
</div>
<div class="about-me-content">
<section class="main-content">
<h2 class="body-headers">About Me</h2>
<br>
<hr class="content">
<br>
<article>
<img id="prof-pic" src="assets/images/profilePic.png" alt="profile pic">
<p class="about-me-text">
Hi there. You have reached my personal portfolio page on the internet. Welcome!
</p>
<br>
<p class="about-me-text">
I've been living in San Francisco for almost 6 years now, having completed a bachelor's degree in Biochemistry from the University of California, Berkeley in 2015. Since graduating, I've been working at a couple of biotech companies. I discovered a passion for coding in the last year and am currently taking steps to acquire the knowledge and expertise of a full-stack web developer. I'm excited for the coding-related journeys ahead!
</p>
<br>
<p class="about-me-text">
When I'm not sciencing or coding, I like to spend my time watching films, jogging, and taking photos. If you see someone on the street doing all three of these things simultaneously, it's probably not me as that is insane and requires a level of multi-tasking I have sadly not reached yet.
</p>
<br>
<p class="about-me-text">
Head over to the portfolio section to see some of my definitely-real projects. Also feel free to contact me using one of the three social lilnks at the side of the page.
</p>
</article>
</section>
<aside class="connect-with-me">
<h3 class="body-headers">Connect with Me</h3>
<br>
<hr class="contact-me">
<br>
<a target="_blank" href="https://github.com/CodingKaiser">
<img src="assets/images/GitHubIcon.png" alt="GitHubIcon">
</a>
<a target="_blank" href="https://stackoverflow.com/users/7340614/fnoe">
<img src="assets/images/StackOverflowIcon.png" alt="StackOverflowIcon">
</a>
<a target="_blank" href="https://www.linkedin.com/in/falko-noe-bab87073">
<img src="assets/images/LinkedInIcon.png" alt="LinkedInIcon">
</a>
</aside>
</div>
<div class="push"></div>
</div>
<footer>
<p class="footer-copyright">
© Copyright 2017 Falko Noe
</p>
</footer>
</body>
</html>