20 lines
381 B
HTML
20 lines
381 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Max's School Stuff</title>
|
|
<style>
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Hi there!</h1>
|
|
<p>This repo contains some of my school Software Engineering stuff. It's all pretty simple, but it's here as a backup.</p>
|
|
</body>
|
|
</html>
|