personal-site/index.html

24 lines
545 B
HTML
Raw Normal View History

2022-02-14 15:48:45 +01:00
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
2022-02-14 16:42:42 +01:00
<link href="styles.css" rel="stylesheet">
2022-02-14 15:48:45 +01:00
</head>
<body>
<div id="header">
2022-02-14 16:53:11 +01:00
<h1 class="text-5xl font-bold text-center nunito mt-2.5">
2022-02-14 16:02:47 +01:00
Wes Bryie's Website
2022-02-14 15:48:45 +01:00
</h1>
</div>
<div id="middle">
</div>
2022-02-14 17:12:13 +01:00
<div id="footer" class="text-lg nunito inset-x-0 bottom-0 h-16 ">
2022-02-14 17:05:37 +01:00
<div class="ml-3">
<p>Made by Wes Bryie. 2022</p>
2022-02-14 17:05:37 +01:00
</div>
</div>
2022-02-14 15:48:45 +01:00
</body>
</html>