32 lines
610 B
Markdown
32 lines
610 B
Markdown
|
---
|
||
|
title: "NetBird Onboarding"
|
||
|
date: 2023-11-21T10:00:00Z
|
||
|
---
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Netbird Onboarding</title>
|
||
|
<style>
|
||
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
margin: 20px;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
color: #007bff;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
color: #333;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Welcome to Netbird Onboarding!</h1>
|
||
|
<p>This is a basic HTML page to test if everything is working.</p>
|
||
|
</body>
|
||
|
</html>
|