forked from swbloom/personal-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (47 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,800" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<title>Personal Portfolio - Kamal Saleh</title>
</head>
<body>
<header>
<!-- Header: Add some brief information about yourself here - your name, what role you're interested in, and maybe an interested fact about you. Make it catchy! -->
<h1>Hi! ✌ I'm Kamal this is an update.<br /> I'm a <span class="callout">web application developer</span> with a deep love for adorable puppies 🐶.</h1>
<!-- <img src="images/back-arrow.svg" class="back-arrow" /> -->
</header>
<main>
<!-- Go into a bit more detail here about your work - what your background is, what you're studying, what kind of work you/re looking for, skills that you are currently developing -->
<section class="about-me wrapper">
<div class="column">
<h2 class="keyline">About Me</h2>
<p>
My name's Kamal. I am creating this website for the first time.
</p>
<p>
I love building design-minded websites with a strong focus on code readability, accessibility, and clean, beautiful design.
</p>
<!-- If there's one thing about yourself you'd like to emphasize, this is a great little spot to add it. -->
<p class="highlight">
Things I love ❤️ … good action packed movie, maple bacon donuts, and biking around the city!
</p>
</div>
<div class="column">
<img src="images/heart.png" />
</div>
</section>
</main>
<!-- Footer: Add your contact details here - your email address, as well as any social media platforms you'd like to share with people who might be visiting your website. -->
<footer class="get-in-touch wrapper">
<h2 class="keyline">Get in touch</h2>
<p>Email me at <a href="mailto:[email protected]">[email protected]</a> or find me around the web </p>
<a href="https://www.facebook.com/username"><img src='images/fb-icon.svg' class='social-icon' /></a>
<a href="https://www.linkedin.com/in/username/"><img src='images/linkedin-icon.svg' class='social-icon' /></a>
<a href="https://twitter.com/username"><img src='images/twitter-icon.svg' class='social-icon' /></a>
</footer>
</body>
</html>