Files
NPower_HTMLDEV/Hello_World.html

25 lines
796 B
HTML
Raw Normal View History

2025-02-26 18:45:26 -05:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta lang="en" />
<meta name="description" content="This will appear in embeds on sites like discord" />
2025-02-26 18:45:26 -05:00
<meta name="author" content="Corbin"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Corbin Pieper NPower</title>
2025-02-26 18:45:26 -05:00
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<ul>
<li>Home</li>
<li>About</li>
<li>Contact</li>
</ul>
</nav>
</header>
</body>
</html>