This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Kontrak utama: semua DB harus bisa connect, disconnect, dan executeQuery | |
interface DatabaseConnection { | |
void connect(); | |
void disconnect(); | |
void executeQuery(String query); | |
} | |
// Implementasi MySQL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>To-Do List App</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
background: #f4f6f8; | |
display: flex; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Portfolio Sederhana</title> | |
<style> | |
:root { | |
--primary: #007bff; | |
--dark: #333; |