-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
150 lines (146 loc) · 6.16 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!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 rel="stylesheet" href="./styles.css">
<!-- -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/locomotive-scroll@3.5.4/dist/locomotive-scroll.css">
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.css" />
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<title>Portfolio</title>
</head>
<div class="cursor"></div>
<body >
<div class="wrapper" data-scroll-container>
<!-- NAV BAR -->
<div class="nav">
<div class="logo">
<span>K</span>
</div>
<div class="menu">
<span>About</span>
<span>Contact</span>
<span>Project</span>
</div>
</div>
<!-- FIRST SECTION -->
<div class="header">
<div class="header-text">
<p>Hi my name is</p>
<h1>Vo Phu</h1>
<h1>Hoang Nhat</h1>
<!-- <p class="role">Front-end Developer</p> -->
</div>
<div class="header-img">
<img src="./img/hero1.png" alt="heor-1">
</div>
</div>
<!-- ABOUT SECTION -->
<div class="about">
<div class="tag">
<h3>About</h3>
</div>
<div class="about-content">
<div class="about-text">
<h2>
currently a senior at HUTECH university :)
always want working and learning in professional environment to improve my skills.
</h2>
</div>
<div class="about-img">
<img src="./img/hand.png" alt="hand">
</div>
</div>
<div class="big-tag">
<img src="./img/About.png" alt="about">
</div>
</div>
<!-- TECH SECTION -->
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="item">
<span>React JS</span>
<img src="./img/react.png" alt="icon">
</div>
</div>
<div class="swiper-slide">
<div class="item">
<span>HTML / CSS</span>
<img src="./img/html 1.png" alt="icon">
</div>
</div>
<div class="swiper-slide">
<div class="item">
<span>Node JS</span>
<img src="./img/nodejsLogo 1.png" alt="icon">
</div>
</div>
<div class="swiper-slide">
<div class="item">
<span>MongoDB</span>
<img src="./img/mongodb 1.png" alt="icon">
</div>
</div>
</div>
</div>
<!-- PROJECT SECTION -->
<div class="project-list">
<!-- <div class="big-tag">
<img src="./img/Projects.png" alt="projects">
</div> -->
<div class="project">
<div class="tag"><h3>Projects</h3></div>
<img src="./img/coffee-mng-project.png" alt="project">
<div class="project-info">
<div class="project-name">
<h1>Employee Management System </h1>
</div>
<div class="project-tech">
<div class="tech-tag">
<span>React JS</span>
</div>
<div class="tech-tag">
<span>Node JS</span>
</div>
<div class="tech-tag">
<span>GraphQL</span>
</div>
<div class="tech-tag">
<span>MongoDB</span>
</div>
</div>
<div class="project-btn">
<a href="https://github.com/Kennn-dev/Employee-Manage-System">Learn more</a>
</div>
</div>
</div>
</div>
<!-- CONTACT SECTION -->
<div class="contact">
<div class="tag"><h3>Contact</h3></div>
<p>Keep in touch with me 👏</p>
<div class="social">
<a href="https://www.facebook.com/Ken.deep.try.20/"><img src="./img/facebook.png" width="150" alt="facbook-3d"></a>
<a href="https://github.com/Kennn-dev"><img src="./img/github.png" width="119" alt="github"></a>
<a href="mailto:nhatong2015@gmail.com"><img style="margin-top : 5px" src="./img/email.png" width="135" height="135" alt="email-3d"></a>
<a href="https://www.instagram.com/kenart_1012/"><img src="./img/instagram.png" width="150" alt="instagram"></a>
</div>
</div>
<!-- FOOTER-->
<div class="footer">
<p>A portfolio is never really complete 🙆🔥 Made with ♥ x ⌨ </p>
</div>
</div>
<script src="https://unpkg.com/swiper/swiper-bundle.js"></script>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.0/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.0/ScrollTrigger.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/locomotive-scroll@3.5.4/dist/locomotive-scroll.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.11.4/TweenMax.min.js"></script>
<script src="./index.js"></script>
</body>
</html>