-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (45 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://getbootstrap.com/docs/5.3/assets/css/docs.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="css/index-style.css">
<script defer src="js/index.js"></script>
<title>1 - Homepage</title>
</head>
<div class="topnav">
<a class="active" href="index.html">Home</a>
<a href="html/requirement.html">Requirement Advertisement</a>
<a href="html/form.html">Application Form</a>
<a href="assets/Borang_SKP.pdf" target="_blank">PDF Form</a>
</div>
<body>
<div class="container">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col-md-12 col-xl-4">
<div class="card">
<div class="card-body text-center">
<div class="mt-3 mb-4">
<h1>Developer</h1>
<img src="assets/dev.jpeg" class="rounded-circle img-fluid" style="width: 200px;" />
</div>
<h4 class="mb-2">Khairul Izzat Bin Roslan</h4>
<p class="text-muted mb-4">2022464134 <span class="mx-2">|</span> @RCS2405B</p>
<div class="mb-4 pb-2">
<a href="https://github.com/ReaperKai07/" target="_blank" class="btn btn-outline-primary btn-floating">
<i>Github Page</i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<footer class="py-3">
<p class="text-center text-muted">© 2023 Kai & Co</p>
</footer>
</html>