Skip to content

Instantly share code, notes, and snippets.

@NafiNoDev
NafiNoDev / index.html
Created October 18, 2025 08:40
Tugas Website layout
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website layout</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="header">Header</div>
@NafiNoDev
NafiNoDev / index.html
Last active April 19, 2025 07:54
[EKSKUL] Website Layout
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website Layout</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Ditulis oleh: [C] NafiNoDev (Abdunnafi' Ahmad) -->
@NafiNoDev
NafiNoDev / Main.php
Created May 27, 2024 07:26
Simple Pocketmine-MP Plugin
<?php
namespace YourNameSpace;
use pocketmine\plugin\PluginBase;
class Main extends PluginBase {
public function onEnable():void {
$this->getLogger()->info("Plugin has Enabled");
}