Initial website setup with boilerplate HTML and CSS link

This commit is contained in:
Derek L. Seitz 2025-08-10 23:20:21 -05:00
parent ea13d7d3e4
commit cc5e3a2af8
2 changed files with 23 additions and 0 deletions

23
index.html Normal file
View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Derek L. Seitz - Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
</header>
<main>
<h1>Derek L. Seitz - Portfolio</h1>
</main>
<footer>
</footer>
</body>
</html>

0
styles.css Normal file
View File