-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (65 loc) · 2.5 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
<!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>Card Profile | Naufal Akbar Nugroho</title>
<!-- font -->
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"
integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg=="
crossorigin="anonymous"
/>
<!-- font end -->
<!-- AOS -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<!-- favicon -->
<link rel="shortcut icon" href="assets/favicon_baru.ico" type="image/x-icon" />
<link rel="icon" href="assets/favicon_baru.ico" type="image/x-icon" />
<!-- CSS -->
<link rel="stylesheet" href="css/main.css" type="text/css" />
</head>
<body>
<!-- section card -->
<section class="sec">
<div class="card" data-aos="fade-up" data-aos-duration="1500">
<div class="toggle"></div>
<div class="content">
<div class="img-text">
<div class="img-box">
<img src="assets/profile.jpg" alt="profile-pic" />
</div>
<h3>Naufal Akbar Nugroho<br /><span>UI/UX Enthusiast | Web Developer</span></h3>
</div>
<ul class="sci">
<li>
<a href="https://github.com/nuflakbrr" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://www.instagram.com/kbrnugroho" target="_blank"><i class="fa fa-instagram" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://naufalakbar.me" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
</li>
<li>
<a href="mailto:[email protected]" target="_blank"><i class="fa fa-envelope" aria-hidden="true"></i></a>
</li>
</ul>
<a href="https://saweria.co/NOPALLLL" target="_blank" id="donate">Yuk Donate!</a>
</div>
</div>
</section>
<!-- section card end -->
<!-- AOS -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
once: true,
});
</script>
<script src="script.js"></script>
</body>
</html>