-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (70 loc) · 2.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Muhammad Fahmi's Personal Webpage</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Muhammad Fahmi's Personal Webpage</h1>
<nav>
<a href="#home" class="nav-link">Home</a>
<a href="#about" class="nav-link">About Me</a>
<a href="#projects" class="nav-link">Projects</a>
<a href="#contact" class="nav-link">Contact</a>
</nav>
</header>
<main>
<!-- Section Home -->
<!-- End Of Section Home -->
<!-- Section About Me -->
<section id="about" class="content-section" style="display: none;">
<h2>About Me</h2>
<p>Hi, I'm Fahmi. I'm a programmer from Indonesia. I love coding and creating innovative solutions to challenging problems. Welcome to my personal webpage where you can learn more about my work and get in touch with me.</p>
</section>
<!-- End Of Section About Me -->
<!-- Section Projects -->
<section id="projects" class="content-section" style="display: none;">
<h2>Projects</h2>
<div class="project-card">
<img src="img/sislap.png" alt="Project Image">
<br>
<h3>SISLAP-LPJU ADMINISTRATOR (WEB)</h3>
<p>Sistem Laporan Lampu Penerangan Jalan Umum Milik Dishub Medan.</p>
<a href="link_to_your_github_repository" target="_blank" class="btn">View Project</a>
<br>
<div class="tags">
<span class="tag">VUE</span>
<span class="tag">PRIVATE</span>
</div>
</div>
<div class="project-card">
<img src="img/citizen-report.png" alt="Project Image">
<h3>CITIZEN-REPORT (WEB)</h3>
<p>Citizen report adalah sistem pelaporan masyarakat jikalau ada sebuah kejadian yang tidak diinginkan.</p>
<a href="https://github.com/Fahmi-S/citizen-reports" target="_blank" class="btn">View Project</a>
<br>
<div class="tags">
<span class="tag">LARAVEL</span>
<span class="tag">PUBLIC</span>
</div>
</div>
</section>
<!-- End Of Section Projects -->
<!-- Section Contact -->
<section id="contact" class="content-section" style="display: none;">
<h2>Contact</h2>
<p>If you'd like to get in touch, you can email me at <a href="mailto:example@example.com">fahmi@example.com</a>.</p>
</section>
<!-- End Of Section Contact -->
</main>
<!-- Section Footer -->
<footer>
© 2024 Fahmi. All rights reserved.
</footer>
<!-- End Of Section Footer -->
<!-- Import Script Section -->
<script src="script.js"></script>