-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (83 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
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<title>PakkuDon</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/fontawesome.min.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/brands.min.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/solid.min.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<label for="toggle-navbar">Menu</label>
<input id="toggle-navbar" type="checkbox" />
<ul>
<li><a href="#" data-scroll-target="#home">Home</a></li>
<li><a href="#" data-scroll-target="#about">About</a></li>
<li><a href="#" data-scroll-target="#projects">Projects</a></li>
<li><a href="/blog" target="_blank" rel="noopener noreferrer">Blog</a></li>
</ul>
</nav>
<div class="lightbox">
<div class="content">
<button type="button" class="prev-button">
<i class="fa fa-chevron-left" aria-hidden="true"></i>
</button>
<div class="image-container">
</div>
<button type="button" class="next-button">
<i class="fa fa-chevron-right" aria-hidden="true"></i>
</button>
</div>
<button type="button" class="close-button">
<i class="fa fa-times-circle" aria-hidden="true"></i>
</button>
</div>
<section id="home" class="align-center text-center">
<div class="container">
<h1 class="name">PakkuDon</h1>
<h2 class="subheading">Web Developer</h2>
<hr />
<div class="profiles">
<a href="https://github.com/PakkuDon" title="GitHub" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-github" aria-hidden="true"></i>
</a>
<a href="http://codepen.io/PakkuDon/" title="CodePen" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-codepen" aria-hidden="true"></i>
</a>
<a href="http://stackoverflow.com/users/2580649/pakkudon" title="Stack Overflow" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-stack-overflow" aria-hidden="true"></i>
</a>
<a href="https://freecodecamp.com/PakkuDon" title="Free Code Camp" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-free-code-camp" aria-hidden="true"></i>
</a>
</div>
</div>
</section>
<section id="about">
<div class="container">
<h1 class="title text-center">About</h1>
<div>
<img alt="Most used languages on Github" src="https://github-readme-stats.vercel.app/api/top-langs?username=PakkuDon&show_icons=true&locale=en&layout=compact&theme=dark" />
</div>
<div>
Powered by <a href="https://github.com/anuraghazra/github-readme-stats" target="_blank" rel="noopener noreferrer">GitHub Readme Stats</a>
</div>
<div class="skill-lists">
</div>
</div>
</section>
<section id="projects">
<div class="container">
<h1 class="title text-center">Projects</h1>
<div class="project-list">
</div>
</div>
</section>
</body>
</html>