summaryrefslogtreecommitdiff
path: root/about-en.html
diff options
context:
space:
mode:
authorArne Rief <arne.rief@gmail.com>2023-02-10 21:40:00 +0100
committerArne Rief <arne.rief@gmail.com>2023-02-11 14:53:10 +0100
commit5bab4502a098eb0e3b5a59b68bc9d8d23529ea55 (patch)
treeb8a737694d1217f7af9a6884720678a179cacbb0 /about-en.html
Desktop version
Diffstat (limited to 'about-en.html')
-rw-r--r--about-en.html118
1 files changed, 118 insertions, 0 deletions
diff --git a/about-en.html b/about-en.html
new file mode 100644
index 0000000..94a2e26
--- /dev/null
+++ b/about-en.html
@@ -0,0 +1,118 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+
+ <!-- font general -->
+ <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=Inter&display=swap"
+ rel="stylesheet"
+ />
+ <!-- font navbar -->
+ <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=Archivo+Black&display=swap"
+ rel="stylesheet"
+ />
+ <!-- FA icons -->
+ <link
+ href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
+ rel="stylesheet"
+ />
+ <link href="style.css" rel="stylesheet" />
+
+ <title>Arne Rief - Web Developer</title>
+ </head>
+ <body>
+ <!-- NAVBAR -->
+ <header>
+ <nav>
+ <ul>
+ <li>
+ <a href="index-en.html"><h1>Arne Rief</h1></a>
+ </li>
+ <li><a href="about-en.html">About me</a></li>
+ <li><a href="index-en.html#projects">Projects</a></li>
+ <li><a href="index-en.html#contact">Contact</a></li>
+ <li>
+ <a href="https://linkedin.com/in/arne-rief" target="_blank"
+ ><i class="fa-brands fa-linkedin"></i
+ ></a>
+ </li>
+ <li>
+ <a href="https://github.com/Arrief" target="_blank"
+ ><i class="fa-brands fa-github"></i
+ ></a>
+ </li>
+ <li><a href="about.html">🇩🇪</a></li>
+ </ul>
+ </nav>
+ </header>
+
+ <main>
+ <section class="about-section">
+ <div class="portrait-container">
+ <img src="images/portrait.JPG" alt="Arne Rief" />
+ </div>
+ <div class="text-container text-about">
+ <p>
+ Hi, my name is <span class="text-emphasis">Arne Rief</span>.
+ Originally I studied history with the goal of an academic career in
+ mind. My coding journey started only because of my natural curiosity
+ and
+ <span class="text-emphasis"
+ >love for learning new things and skills</span
+ >. However, once I gave coding a try, it turned out that I enjoy it
+ so much (and apparently have a talent for it, too) that I decided to
+ to turn this new hobby into a new career path for me.
+ </p>
+ <p>
+ So far I've been enjoying this journey immensely, as it provides a
+ very
+ <span class="text-emphasis">creative and dynamic outlet</span> for
+ my
+ <span class="text-emphasis"
+ >analytical way of thinking, my attention to details and my drive
+ to always learn and grow both on a personal and professional
+ level</span
+ >. I'm always ready for
+ <span class="text-emphasis">new challenges</span> and I look forward
+ to hearing from you!
+ </p>
+ </div>
+ </section>
+ </main>
+
+ <!-- FOOTER -->
+ <footer>
+ <address>
+ <dl>
+ <dt>LinkedIn:</dt>
+ <dd>
+ <a href="https://linkedin.com/in/arne-rief" target="_blank"
+ ><i class="fa-brands fa-linkedin big-icon"></i
+ ></a>
+ </dd>
+ <dt>Github:</dt>
+ <dd>
+ <a href="https://github.com/Arrief" target="_blank"
+ ><i class="fa-brands fa-github big-icon"></i
+ ></a>
+ </dd>
+ <dt>Email:</dt>
+ <dd>
+ <a href="#contact">
+ <i class="fa-solid fa-envelope big-icon"></i
+ ></a>
+ </dd>
+ </dl>
+ </address>
+ <p>&copy; 2023 Arne Rief</p>
+ </footer>
+ </body>
+</html>