forked from ada-c17/personal-portfolio-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (59 loc) · 1.97 KB
/
index.html
File metadata and controls
59 lines (59 loc) · 1.97 KB
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
<!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">
<link href="../styles/index.css" rel="stylesheet">
<link href="../styles/style.css" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Zen+Loop:ital@0;1&display=swap');
</style>
<title>Personal Portfolio Natalya Z</title>
</head>
<body>
<header>
<div id="header-text">
<h1 id="header-h1">Personal Portfolio</h1>
<h2 id="header-h2">Natalya Zakharova</h2>
</div>
<img id="avatar" src="../images/memoji-sticker.PNG" alt="memoji-sticker-of-me">
</header>
<nav>
<a class="nav-bar" href="index.html">Home</a>
<a class="nav-bar" href="../pages/about.html">About Me</a>
<a class="nav-bar" href="../pages/portfolio.html">My Portfolio</a>
<a class="nav-bar" href="../pages/contact.html">Contact Me</a>
</nav>
<article>
<h3>Hi! I am Natalya Zakharova, a current student in Ada Developers Academy, cohort C17.
</h3>
<p>
I was always passion about computers and how they work. That's why a little more than a year ago I decided to start my journey into software development.
</p>
<p>Before applying to Ada, I spent some time learning SQL and Python. I enjoyed solving different problems and decided to take a sharp turn and change my career.
</p>
</article>
<div class="three-boxes">
<p id="learn-more">To learn more about me you can visit the following pages:</p>
<a href="../pages/portfolio.html">
<div>
<p>Projects made during Ada</p>
</div>
</a>
<a href="../pages/about.html">
<div>
<p>My hobbies and interests</p>
</div>
</a>
<a href="../pages/contact.html">
<div>
<p>My contact information</p>
</div>
</a>
</div>
<footer>
<h4>© Made by Natalya Z || 2022</h4>
</footer>
</body>
</html>