-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·121 lines (111 loc) · 4.02 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap" rel="stylesheet">
<title>Jane's Portfolio</title>
</head>
<body>
<header>
<nav id="navbar">
<a href="#about" class="nav__link">About</a>
<a href="#projects" class="nav__link">Project</a>
<a href="#contacts" class="nav__link">Contact</a>
</nav>
</header>
<main>
<section id="welcome">
<h1>Hey i'am Jane.</h1>
<p>a software engineer</p>
</section>
<section id="about">
<div class="about__intro">
<h1>ABOUT</h1>
<p>I am a girl with a logic mind so I've dedicated my life to it.</p>
<p>I graduated from the Posts and Telecommunications Institute of Technology with a bachelor's degree in technology and nearly 4 years of experience in web development.</p>
<p>My favorite programming language is JavaScript, which I am very comfortable with.</p>
<p>I'm confident in my ability to learn new techniques quickly.</p>
</div>
<div class="about__content">
<div class="about__quote">Highly adaptable person trying to make a better one</div>
<div class="about__img"></div>
</div>
</section>
<section id="projects">
<h1>These are some of my projects..</h1>
<div class="projects__content">
<div class="project">
<img
class="project__img"
src="https://user-images.githubusercontent.com/31103446/221781698-757ede7f-3ef0-4538-83f5-3232e92e636c.png"
/>
<a href="https://ownego.github.io/polaris-vue" target="_blank" class="project__title">
Polaris Vue
</a>
</div>
<div class="project project--right">
<img
class="project__img"
src="https://user-images.githubusercontent.com/31103446/89856425-72d6b200-dbc3-11ea-822c-619086c97e9b.PNG"
/>
<a href="https://stumbling.herokuapp.com" target="_blank" class="project__title">
Stumbling
</a>
</div>
<div class="project">
<img
class="project__img"
src="https://user-images.githubusercontent.com/31103446/222671669-499dc4e6-b532-468f-9cac-25c9efaf7343.png"
/>
<a href="hhttps://github.com/blacklen/advent-of-code-2022" target="_blank" class="project__title">
Advent of Code 2022
</a>
</div>
<div class="project project--right">
<img
class="project__img"
src="https://user-images.githubusercontent.com/31103446/222673825-c5245a27-e14f-4692-98a9-032d3fbe53fe.png"
/>
<a href="https://github.com/blacklen/clothes_search_by_image" target="_blank" class="project__title">
Image-based clothing search
</a>
</div>
</div>
<a href="https://github.com/blacklen/" target="_blank" class="show-all">...</a>
</section>
<section id="contacts">
<h1>Let's work together...</h1>
<div class="contacts-content">
<div>
<a href="https://www.linkedin.com/in/huong-ta-jane-860a25143/" target="_blank">Linkedin</a>
</div>
<div>
<a href="https://github.com/blacklen/" target="_blank">GitHub</a>
</div>
<div>
<a href="mailto:[email protected]" target="_blank">Send a mail</a>
</div>
</div>
</section>
</main>
<footer>
<p>© Created by Jane 2023</p>
</footer>
<script>
window.addEventListener('DOMContentLoaded', () => {
const navLinks = document.getElementsByClassName('nav__link');
if (navLinks) {
for (let element of navLinks) {
element.addEventListener('click', e => {
const hash = e.target.hash;
e.preventDefault();
window.scrollTo(0, document.querySelector(hash).offsetTop - 100);
})
}
}
});
</script>
</body>
</html>