-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPortfolio
34 lines (31 loc) · 1.27 KB
/
Portfolio
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<a href="index.html" class="active">Home</a>
<a href="about.html">About</a>
<a href="skills.html">Skills</a>
<a href="experience.html">Experience</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact info</a>
</nav>
<main class="content-area">
<section class="intro-section">
<h1>Hey I'm <span class="name-highlight">Maryam</span><span class="hand-emoji" data-tooltip="Fun fact: I can code in 3 different languages!">👋</span></h1>
<p>
I'm a junior developer and student at HackYourFuture, Denmark. As a developer, I work basically with HTML, JavaScript, and other relevant technologies.
</p>
<div class="action-buttons">
<a href="#projects" class="btn">Learn More</a>
<a href="contact.html" class="btn">Contact Me</a>
</div>
</section>
</main>
</body>
</html>