-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (83 loc) · 4.39 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
<!DOCTYPE html>
<html class="h-100" 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 type="image/x-icon" href="assets/img/logo-1.png" rel="shortcut icon">
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<title>Ahmad Fauzy - Back End Developer</title>
</head>
<body class="h-100 d-flex flex-column text-light bg-dark">
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<a class="navbar-brand" href="index.html">
<div class="logo"></div>
</a>
<button class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbarNav" type="button" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link link-danger fw-medium active" href="index.html" aria-current="page">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="container my-auto">
<div class="row text-center">
<div class="col-12">
<img class="img-thumbnail rounded-circle my-3" src="assets/img/profile-picture.png" alt="Profile Picture" width="200" height="200">
<h1 class="fs-3">
Hello <span class="waving-hand">👋</span>, I'm <span class="fw-bold text-danger">Ahmad Fauzy</span>
</h1>
<h2 class="fs-5 my-lg-3">Back End Developer - Information Systems</h2>
<div>
<!-- TODO: Update CV -->
<!-- <a class="link-light text-decoration-none fw-medium text-white-50" href="https://drive.google.com/file/d/1pwFMgpaYZmWU79F8uzlomoguRrZF_DwG/view?usp=share_link" target="_blank" rel="noopener noreferrer">
<i class="bi bi-file-person-fill"></i> Resume
</a> -->
<a class="link-light text-decoration-none fw-medium text-white-50 mx-3" href="https://www.linkedin.com/in/madfauzy/" target="_blank" rel="noopener noreferrer">
<i class="bi bi-linkedin"></i> madfauzy
</a>
<a class="link-light text-decoration-none fw-medium text-white-50" href="https://github.com/madfauzy" target="_blank" rel="noopener noreferrer">
<i class="bi bi-github"></i> madfauzy
</a>
</div>
</div>
</div>
</main>
<footer class="px-0 py-4 p-sm-4">
<div class="container d-flex justify-content-between align-items-center flex-column flex-md-row">
<div class="text-white-50">
© 2024 Created by
<a class="link-light text-decoration-none fw-medium text-white-50" href="https://www.linkedin.com/in/madfauzy/" target="_blank" rel="noopener noreferrer">Ahmad Fauzy</a>
</div>
<div class="text-white-50">
Built using
<a class="link-light text-decoration-none fw-medium text-white-50" href="https://getbootstrap.com/" target="_blank" rel="noopener noreferrer">
<i class="bi bi-bootstrap"></i> Bootstrap
</a>
and Hosted on
<a class="link-light text-decoration-none fw-medium text-white-50" href="https://github.com/" target="_blank" rel="noopener noreferrer">
<i class="bi bi-github"></i> Github
</a>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</body>
</html>