19 lines
666 B
PHP
19 lines
666 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.php">Physics</a></li>
|
|
<li><a href="https://lukerufkahr.com/notes/circuits.php">Circuits</a></li>
|
|
<li><a href="https://lukerufkahr.com/notes/cpp.php">C++</a></li>
|
|
</ul>
|
|
</main>
|
|
<?php include './snippet/footer.php'?>
|
|
</body>
|