Files
NPower_HTMLDEV/Hello_World.html
2025-02-26 18:45:26 -05:00

25 lines
857 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta lang="en" />
<meta name="description" content="This is where you use a couple of sentences to describe your business or entity to the search engines for SEO." />
<meta name="author" content="Corbin"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Tab title goes here</title>
<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>