Files
website/index.php
2026-02-24 16:33:40 -06:00

18 lines
626 B
PHP

<!DOCTYPE html>
<head>
<link rel="stylesheet" href="https://lukerufkahr.com/assets/style.css">
<meta content='width=device-width, initial-scale=1' name='viewport'/>
</head>
<body>
<?php include './snippet/header.php'?>
<main>
<?php echo '<p>Hello World</p>'; ?>
<h1>Welcome to my page.</h1>
<ul>
<li><a href="https://lukerufkahr.com/notes/physics.html">Physics</a></li>
<li><a href="https://lukerufkahr.com/notes/circuits.html">Circuits</a></li>
<li><a href="https://lukerufkahr.com/notes/cpp.html">C++</a></li>
</ul>
</main>
</body>