-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (59 loc) · 3.59 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
<!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">
<title>Home</title>
<!-- favicon -->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- navbar section starts -->
<nav class="navbar">
<a href=""> <i class="fas fa-home"></i> <span>home</span> </a>
<a href="about.html"> <i class="fas fa-user"></i> <span>about</span> </a>
<a href="portfolio.html"> <i class="fas fa-briefcase"></i> <span>portfolio</span> </a>
<a href="blogs.html"> <i class="fas fa-blog"></i> <span>blogs</span> </a>
<a href="contact.html"> <i class="fas fa-address-book"></i> <span>contact</span> </a>
</nav>
<!-- navbar section ends -->
<!-- home section starts -->
<div id="swup" class="transition-fade">
<div class="loader">
<div class="loader__icon">
<svg version="1.1" id="loader-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="40px" height="40px" viewBox="0 0 40 40" enable-background="new 0 0 40 40" xml:space="preserve">
<path opacity="0.2" fill="#000" d="M20.201,5.169c-8.254,0-14.946,6.692-14.946,14.946c0,8.255,6.692,14.946,14.946,14.946s14.946-6.691,14.946-14.946C35.146,11.861,28.455,5.169,20.201,5.169z M20.201,31.749c-6.425,0-11.634-5.208-11.634-11.634c0-6.425,5.209-11.634,11.634-11.634c6.425,0,11.633,5.209,11.633,11.634C31.834,26.541,26.626,31.749,20.201,31.749z"></path>
<path fill="#000" d="M26.013,10.047l1.654-2.866c-2.198-1.272-4.743-2.012-7.466-2.012h0v3.312h0C22.32,8.481,24.301,9.057,26.013,10.047z"></path>
<animateTransform attributeType="xml" attributeName="transform" type="rotate" from="0 20 20" to="360 20 20" dur="0.5s" repeatCount="indefinite"></animateTransform>
</svg>
</div>
<div class="loader__tile"></div>
<div class="loader__tile"></div>
<div class="loader__tile"></div>
<div class="loader__tile"></div>
<div class="loader__tile"></div>
</div>
<section class="home">
<div class="image">
<img class="lazy" data-src="images/user.jpg" alt="Nguyễn Thành Luân">
</div>
<div class="content">
<h3>hi, i am Nguyễn Thành Luân</h3>
<span>front-end developer</span>
<p>Good morning, everyone! Let me introduce myself. I’m Thành Luân. My full name is Nguyễn Thành Luân. I have been working as a web developer since my graduation from Quy Nhon College Of Engineering And Technology in 2016. As I have stated in my CV, I have cooperated with a few small-sized and medium-sized companies and also worked on my personal projects. I believe what has helped me gain credibility are my good professional skills and my punctuality. I always put my heart and soul into every single website that I develop. I guess that’s all I have to share about myself. Thank you for listening!</p>
<a href="/about.html" class="btn"> about me <i class="fas fa-user"></i> </a>
</div>
</section>
</div>
<!-- home section ends -->
</body>
<script src="./js/jquery-3.6.0.js"></script>
<script src="./js/lazyload.min.js"></script>
<script defer src="./js/swup.min.js"></script>
<script defer src="./js/main.js"></script>
</html>