25 lines
549 B
HTML
25 lines
549 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Hello from CH32V208</title>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
text-align: center;
|
|
background-color: #f0f0f0;
|
|
margin-top: 50px;
|
|
}
|
|
h1 {
|
|
color: #333;
|
|
}
|
|
p {
|
|
color: #555;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Hello World</h1>
|
|
<p>This page is served from CH32V208 using lwIP.</p>
|
|
</body>
|
|
</html>
|